YARN-8208. Add log statement for Docker client configuration file at INFO level. Contributed by Yesha Vora
This commit is contained in:
parent
84ecfe3ceb
commit
914d6b5cb1
|
@ -232,6 +232,7 @@ public class ServiceApiUtil {
|
||||||
if (!StringUtils.isEmpty(dockerClientConfig)) {
|
if (!StringUtils.isEmpty(dockerClientConfig)) {
|
||||||
Path dockerClientConfigPath = new Path(dockerClientConfig);
|
Path dockerClientConfigPath = new Path(dockerClientConfig);
|
||||||
FileSystem fs = dockerClientConfigPath.getFileSystem(conf);
|
FileSystem fs = dockerClientConfigPath.getFileSystem(conf);
|
||||||
|
LOG.info("The supplied Docker client config is " + dockerClientConfig);
|
||||||
if (!fs.exists(dockerClientConfigPath)) {
|
if (!fs.exists(dockerClientConfigPath)) {
|
||||||
throw new IOException(
|
throw new IOException(
|
||||||
"The supplied Docker client config does not exist: "
|
"The supplied Docker client config does not exist: "
|
||||||
|
|
|
@ -118,12 +118,10 @@ public final class DockerClientConfigHandler {
|
||||||
tokenId.getKind(), new Text(registryUrl));
|
tokenId.getKind(), new Text(registryUrl));
|
||||||
credentials.addToken(
|
credentials.addToken(
|
||||||
new Text(registryUrl + "-" + applicationId), token);
|
new Text(registryUrl + "-" + applicationId), token);
|
||||||
if (LOG.isDebugEnabled()) {
|
LOG.info("Token read from Docker client configuration file: "
|
||||||
LOG.debug("Token read from Docker client configuration file: "
|
|
||||||
+ token.toString());
|
+ token.toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return credentials;
|
return credentials;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue