Skip to content

Commit ae48c29

Browse files
committed
HDFS-17632. Fix some minor stuff
1 parent f6a17a7 commit ae48c29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hadoop-hdfs-project/hadoop-hdfs-rbf/src/main/java/org/apache/hadoop/hdfs/server/federation/router/RouterClientProtocol.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2015,7 +2015,7 @@ public BatchedEntries<OpenFileEntry> listOpenFiles(long prevId,
20152015
break;
20162016
}
20172017
RemoteLocation remoteLoc = entry.getKey();
2018-
String routerPath = ofe.getFilePath().replaceFirst(remoteLoc.getDest(), remoteLoc.getSrc());;
2018+
String routerPath = ofe.getFilePath().replaceFirst(remoteLoc.getDest(), remoteLoc.getSrc());
20192019
OpenFileEntry newEntry =
20202020
new OpenFileEntry(ofe.getId(), routerPath, ofe.getClientName(),
20212021
ofe.getClientMachine());

0 commit comments

Comments
 (0)