mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Windows: Remove unused commandLine
Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
parent
de26546680
commit
b7106a92f2
2 changed files with 2 additions and 7 deletions
|
@ -251,7 +251,6 @@ func (clnt *client) Create(containerID string, checkpoint string, checkpointDir
|
||||||
client: clnt,
|
client: clnt,
|
||||||
friendlyName: InitFriendlyName,
|
friendlyName: InitFriendlyName,
|
||||||
},
|
},
|
||||||
commandLine: strings.Join(spec.Process.Args, " "),
|
|
||||||
},
|
},
|
||||||
processes: make(map[string]*process),
|
processes: make(map[string]*process),
|
||||||
},
|
},
|
||||||
|
@ -354,7 +353,6 @@ func (clnt *client) AddProcess(ctx context.Context, containerID, processFriendly
|
||||||
client: clnt,
|
client: clnt,
|
||||||
systemPid: uint32(pid),
|
systemPid: uint32(pid),
|
||||||
},
|
},
|
||||||
commandLine: createProcessParms.CommandLine,
|
|
||||||
hcsProcess: newProcess,
|
hcsProcess: newProcess,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -13,9 +13,6 @@ type process struct {
|
||||||
processCommon
|
processCommon
|
||||||
|
|
||||||
// Platform specific fields are below here.
|
// Platform specific fields are below here.
|
||||||
|
|
||||||
// commandLine is to support returning summary information for docker top
|
|
||||||
commandLine string
|
|
||||||
hcsProcess hcsshim.Process
|
hcsProcess hcsshim.Process
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue