YARN-8485. Priviledged container app launch is failing intermittently. Contributed by Eric Yang

(cherry picked from commit 53e267fa72)
This commit is contained in:
Shane Kumpf 2018-07-02 16:18:32 -06:00
parent 0aa7272199
commit 2f264764a4
1 changed files with 1 additions and 1 deletions

View File

@ -1235,7 +1235,7 @@ static int check_privileges(const char *user) {
if (ret != 1) {
int child_pid = fork();
if (child_pid == 0) {
execl("/bin/sudo", "sudo", "-U", user, "-n", "-l", "docker", NULL);
execl("/usr/bin/sudo", "sudo", "-U", user, "-n", "-l", "docker", NULL);
exit(INITIALIZE_USER_FAILED);
} else {
while ((waitid = waitpid(child_pid, &statval, 0)) != child_pid) {