apucher commented on code in PR #9008: URL: https://github.com/apache/pinot/pull/9008#discussion_r925976777
########## pinot-clients/pinot-java-client/src/main/java/org/apache/pinot/client/JsonAsyncHttpPinotClientTransport.java: ########## @@ -54,19 +57,19 @@ public class JsonAsyncHttpPinotClientTransport implements PinotClientTransport { private final Map<String, String> _headers; private final String _scheme; - private static final long BROKER_READ_TIMEOUT_MS = 60000L; - private static final int BROKER_CONNECT_TIMEOUT_MS = 2000; - + private final int _brokerReadTimeout; private final AsyncHttpClient _httpClient; public JsonAsyncHttpPinotClientTransport() { + _brokerReadTimeout = 60000; _headers = new HashMap<>(); _scheme = CommonConstants.HTTP_PROTOCOL; _httpClient = Dsl.asyncHttpClient(); } public JsonAsyncHttpPinotClientTransport(Map<String, String> headers, String scheme, - @Nullable SSLContext sslContext) { + @Nullable SSLContext sslContext, int readTimeout, int connectTimeout, int handshakeTimeout, boolean tlsV10Enabled) { Review Comment: instead of passing a boolean flag for tls 1.0, why not pass a list of protocols? -- 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. To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org