YARN-10369. Make NMTokenSecretManagerInRM sending NMToken for nodeId DEBUG. Contributed by Jim Brennan.

(cherry picked from commit 5d8600e80a)
This commit is contained in:
bibinchundatt 2020-07-29 23:26:08 +05:30 committed by Eric E Payne
parent c3dbbd66b9
commit daff39a601
1 changed files with 3 additions and 2 deletions

View File

@ -197,8 +197,9 @@ public class NMTokenSecretManagerInRM extends BaseNMTokenSecretManager {
NMToken nmToken = null;
if (nodeSet != null) {
if (!nodeSet.contains(container.getNodeId())) {
LOG.info("Sending NMToken for nodeId : " + container.getNodeId()
+ " for container : " + container.getId());
LOG.debug(
String.format("Sending NMToken for nodeId : %s for container : %s",
container.getNodeId().toString(), container.getId().toString()));
Token token =
createNMToken(container.getId().getApplicationAttemptId(),
container.getNodeId(), applicationSubmitter);