Windows: Fix a longstanding TODO

Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: 61dad306b12f4d48d3643d9331c059b9cdef731c
Component: engine
This commit is contained in:
John Howard
2016-11-18 10:20:43 -08:00
parent b58d62c699
commit ba28f133a9
+1 -3
View File
@@ -18,9 +18,7 @@ func (daemon *Daemon) createSpec(c *container.Container) (*specs.Spec, error) {
return nil, err
}
// TODO Windows - this can be removed. Not used (UID/GID)
rootUID, rootGID := daemon.GetRemappedUIDGID()
if err := c.SetupWorkingDirectory(rootUID, rootGID); err != nil {
if err := c.SetupWorkingDirectory(0, 0); err != nil {
return nil, err
}