Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
sandbox.py had the change eg
```
return FileSystemImageSandbox(self.SANDBOX_NAME, self._get_sandbox_user(assigned_task))
```
which is a problem for us since
```
pwent = pwd.getpwnam(self._user)
grent = grp.getgrgid(pwent.pw_gid)
```
throw an exception if the user does not exist. This is a change in behavior of how Aurora launched containers before the diff. Before, job key's role could be mangled liberally and arbitrarily w/out this restriction.