HADOOP-18387. Fix incorrect placeholder in hadoop-common (#4679). Contributed by fanshilun.
This commit is contained in:
parent
1cda2dcb6e
commit
d8d3325d2f
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user