Genesys Java SDK connection pool exhaustion under load

We’re hitting a wall with the Genesys Cloud Java SDK in our custom agent desktop. The underlying RestAdapter seems to default to a very small connection pool. Under moderate load, requests to /api/v2/users/me hang indefinitely. I’ve tried injecting a custom OkHttpClient with connectionPool(new ConnectionPool(200, 5, TimeUnit.MINUTES)), but the SDK’s internal retry logic keeps timing out. Is there a supported way to override the HTTP client factory for thread-safe pooling without patching the SDK source?