Windows: Remove unused commandLine

Signed-off-by: John Howard <jhoward@microsoft.com>
Upstream-commit: b7106a92f26271e0d2c6623446ce4a8bc987c445
Component: engine
This commit is contained in:
John Howard
2017-02-02 11:16:11 -08:00
parent 1f8887a389
commit f8a42143d3
2 changed files with 2 additions and 7 deletions
@@ -251,7 +251,6 @@ func (clnt *client) Create(containerID string, checkpoint string, checkpointDir
client: clnt,
friendlyName: InitFriendlyName,
},
commandLine: strings.Join(spec.Process.Args, " "),
},
processes: make(map[string]*process),
},
@@ -354,8 +353,7 @@ func (clnt *client) AddProcess(ctx context.Context, containerID, processFriendly
client: clnt,
systemPid: uint32(pid),
},
commandLine: createProcessParms.CommandLine,
hcsProcess: newProcess,
hcsProcess: newProcess,
}
// Add the process to the container's list of processes
@@ -13,10 +13,7 @@ type process struct {
processCommon
// Platform specific fields are below here.
// commandLine is to support returning summary information for docker top
commandLine string
hcsProcess hcsshim.Process
hcsProcess hcsshim.Process
}
type autoClosingReader struct {