michael-o commented on a change in pull request #296: URL: https://github.com/apache/httpcomponents-client/pull/296#discussion_r602084169
########## File path: httpclient5/src/main/java/org/apache/hc/client5/http/impl/io/BasicHttpClientConnectionManager.java ########## @@ -179,6 +181,20 @@ public synchronized void setSocketConfig(final SocketConfig socketConfig) { this.socketConfig = socketConfig != null ? socketConfig : SocketConfig.DEFAULT; } + /** + * @since 5.2 + */ + public synchronized ConnectionConfig getConnectionMgmtConfig() { Review comment: Mgmt leftover? ########## File path: httpclient5/src/main/java/org/apache/hc/client5/http/impl/io/BasicHttpClientConnectionManager.java ########## @@ -179,6 +181,20 @@ public synchronized void setSocketConfig(final SocketConfig socketConfig) { this.socketConfig = socketConfig != null ? socketConfig : SocketConfig.DEFAULT; } + /** + * @since 5.2 + */ + public synchronized ConnectionConfig getConnectionMgmtConfig() { + return connectionConfig; + } + + /** + * @since 5.2 + */ + public synchronized void setConnectionMgmtConfig(final ConnectionConfig connectionConfig) { Review comment: Mgmt leftover? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@hc.apache.org For additional commands, e-mail: dev-h...@hc.apache.org