jihoonson commented on a change in pull request #6158: Make time-related variables more readable URL: https://github.com/apache/incubator-druid/pull/6158#discussion_r210107984
########## File path: extensions-contrib/kafka-eight-simpleConsumer/src/main/java/io/druid/firehose/kafka/KafkaSimpleConsumer.java ########## @@ -74,10 +75,10 @@ private List<HostAndPort> replicaBrokers; private SimpleConsumer consumer = null; - private static final int SO_TIMEOUT = 30000; + private static final int SO_TIMEOUT_MILLIS = (int) TimeUnit.SECONDS.toMillis(30); Review comment: Same here. Can be `long`. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
