xyuanlu commented on code in PR #2558:
URL: https://github.com/apache/helix/pull/2558#discussion_r1266428448


##########
meta-client/src/main/java/org/apache/helix/metaclient/impl/zk/ZkMetaClient.java:
##########
@@ -83,17 +83,15 @@ public class ZkMetaClient<T> implements 
MetaClientInterface<T>, AutoCloseable {
   // Lock all activities related to ZkClient connection
   private ReentrantLock _zkClientConnectionMutex = new ReentrantLock();
 
-
   public ZkMetaClient(ZkMetaClientConfig config) {
     _initConnectionTimeout = config.getConnectionInitTimeoutInMillis();
     _reconnectTimeout = 
config.getMetaClientReconnectPolicy().getAutoReconnectTimeout();
     // TODO: Right new ZkClient reconnect using exp backoff with fixed max 
backoff interval. We should
     // Allow user to config reconnect policy
-    _zkClient = new ZkClient(
-        new ZkConnection(config.getConnectionAddress(), (int) 
config.getSessionTimeoutInMillis()),
+    _zkClient = new ZkClient(new ZkConnection(config.getConnectionAddress(), 
(int) config.getSessionTimeoutInMillis()),

Review Comment:
   auto formatter did this. I guess it should be ok ...?
   



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to