YARN-7082. TestContainerManagerSecurity failing in trunk. Contributed by Akira Ajisaka
This commit is contained in:
parent
dc63a6a52b
commit
ebb34c7053
|
@ -112,9 +112,11 @@ public class BaseContainerTokenSecretManager extends
|
|||
protected byte[] retrievePasswordInternal(ContainerTokenIdentifier identifier,
|
||||
MasterKeyData masterKey)
|
||||
throws org.apache.hadoop.security.token.SecretManager.InvalidToken {
|
||||
LOG.debug("Retrieving password for {} for user {} to be run on NM {}",
|
||||
identifier.getContainerID(), identifier.getUser(),
|
||||
identifier.getNmHostAddress());
|
||||
if (LOG.isDebugEnabled()) {
|
||||
LOG.debug("Retrieving password for {} for user {} to be run on NM {}",
|
||||
identifier.getContainerID(), identifier.getUser(),
|
||||
identifier.getNmHostAddress());
|
||||
}
|
||||
return createPassword(identifier.getBytes(), masterKey.getSecretKey());
|
||||
}
|
||||
|
||||
|
|
|
@ -24,6 +24,7 @@ import java.io.IOException;
|
|||
|
||||
import org.apache.commons.io.IOUtils;
|
||||
import org.apache.hadoop.io.Text;
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
import org.apache.hadoop.yarn.api.records.ContainerId;
|
||||
import org.apache.hadoop.yarn.api.records.LogAggregationContext;
|
||||
import org.apache.hadoop.yarn.api.records.Priority;
|
||||
|
@ -121,6 +122,12 @@ public class ContainerTokenIdentifierForTest extends ContainerTokenIdentifier {
|
|||
return new ContainerIdPBImpl(proto.getContainerId());
|
||||
}
|
||||
|
||||
@Override
|
||||
public UserGroupInformation getUser() {
|
||||
final ContainerId containerId = getContainerID();
|
||||
return UserGroupInformation.createRemoteUser(containerId.toString());
|
||||
}
|
||||
|
||||
public String getApplicationSubmitter() {
|
||||
return proto.getAppSubmitter();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue