HDFS-14838. RBF: Display RPC (instead of HTTP) Port Number in RBF web UI. Contributed by Xieming Li

(cherry picked from commit c255333e20)
This commit is contained in:
Takanobu Asanuma 2019-09-11 16:54:08 +09:00
parent 1dbf87c9ff
commit 8e27d6b4c9
1 changed files with 1 additions and 1 deletions

View File

@ -526,7 +526,7 @@ public class FederationMetrics implements FederationMBean {
@Override
public String getHostAndPort() {
InetSocketAddress address = this.router.getHttpServerAddress();
InetSocketAddress address = this.router.getRpcServerAddress();
if (address != null) {
try {
String hostname = InetAddress.getLocalHost().getHostName();