tomscut commented on code in PR #6154:
URL: https://github.com/apache/hadoop/pull/6154#discussion_r1349811046
##########
hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/namenode/NameNode.java:
##########
@@ -1010,10 +1010,13 @@ private void startCommonServices(Configuration conf)
throws IOException {
LOG.warn("ServicePlugin " + p + " could not be started", t);
}
}
- LOG.info(getRole() + " RPC up at: " + getNameNodeAddress());
+ LOG.info("{} RPC up at: {}.", getRole(), getNameNodeAddress());
if (rpcServer.getServiceRpcAddress() != null) {
- LOG.info(getRole() + " service RPC up at: "
- + rpcServer.getServiceRpcAddress());
+ LOG.info("{} service RPC up at: {}.", getRole(),
rpcServer.getServiceRpcAddress());
+
Review Comment:
Please remove this blank line.
--
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]