Skip to content

Commit

Permalink
SCB-2100 Solve the problem of not setting keepaliveTimeout, client id…
Browse files Browse the repository at this point in the history
…leTimeout does not work
  • Loading branch information
develpoerX committed Oct 26, 2020
1 parent d4e2a7c commit f477063
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -77,6 +77,7 @@ private static HttpClientOptions createHttpClientOptions() {
HttpClientOptions httpClientOptions = new HttpClientOptions();
httpClientOptions.setMaxPoolSize(TransportClientConfig.getConnectionMaxPoolSize())
.setIdleTimeout(TransportClientConfig.getConnectionIdleTimeoutInSeconds())
.setKeepAliveTimeout(TransportClientConfig.getConnectionIdleTimeoutInSeconds())
.setKeepAlive(TransportClientConfig.getConnectionKeepAlive())
.setTryUseCompression(TransportClientConfig.getConnectionCompression())
.setMaxHeaderSize(TransportClientConfig.getMaxHeaderSize())
Expand Down

0 comments on commit f477063

Please sign in to comment.