Running a Java script to pull WEM adherence data using the Genesys Cloud SDK. It works fine locally but times out on our server after about 50 calls. Suspect connection pooling is the issue. Here’s the client setup:
Client client = ClientBuilder.buildBasicClient("user", "pass", "org");
How do I configure the underlying HTTP client for proper thread-safe pooling? The default seems too aggressive.