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 class DelegationTokenRenewer
|
||||||
try {
|
try {
|
||||||
action.cancel();
|
action.cancel();
|
||||||
} catch (InterruptedException ie) {
|
} catch (InterruptedException ie) {
|
||||||
LOG.error("Interrupted while canceling token for " + fs.getUri()
|
LOG.error("Interrupted while canceling token for {} filesystem.", fs.getUri());
|
||||||
+ "filesystem");
|
LOG.debug("Exception in removeRenewAction.", ie);
|
||||||
LOG.debug("Exception in removeRenewAction: {}", ie);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -61,7 +61,7 @@ public class YarnServiceClient {
|
||||||
try {
|
try {
|
||||||
asc = new ApiServiceClient(conf);
|
asc = new ApiServiceClient(conf);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
LOG.error("Error initialize YARN Service Client: {}", e);
|
LOG.error("Error initialize YARN Service Client.", e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue