Skip to content

Commit

Permalink
HADOOP-18387. Fix incorrect placeholder in hadoop-common (apache#4679)…
Browse files Browse the repository at this point in the history
…. Contributed by fanshilun.
  • Loading branch information
slfan1989 authored and HarshitGupta11 committed Nov 28, 2022
1 parent 6523b63 commit c14f1ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,8 @@ public <T extends FileSystem & Renewable> void removeRenewAction(
try {
action.cancel();
} catch (InterruptedException ie) {
LOG.error("Interrupted while canceling token for " + fs.getUri()
+ "filesystem");
LOG.debug("Exception in removeRenewAction: {}", ie);
LOG.error("Interrupted while canceling token for {} filesystem.", fs.getUri());
LOG.debug("Exception in removeRenewAction.", ie);
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public YarnServiceClient() {
try {
asc = new ApiServiceClient(conf);
} catch (Exception e) {
LOG.error("Error initialize YARN Service Client: {}", e);
LOG.error("Error initialize YARN Service Client.", e);
}
}

Expand Down

0 comments on commit c14f1ac

Please sign in to comment.