Commit 88e0b049 authored by Dawn Chen's avatar Dawn Chen

Merge pull request #5287 from ncdc/master

Remove debugging log message from ExecInContainer
parents 168eb000 0c798bbe
...@@ -221,7 +221,6 @@ func (d *dockerContainerCommandRunner) ExecInContainer(containerId string, cmd [ ...@@ -221,7 +221,6 @@ func (d *dockerContainerCommandRunner) ExecInContainer(containerId string, cmd [
args = append(args, fmt.Sprintf("HOSTNAME=%s", container.Config.Hostname)) args = append(args, fmt.Sprintf("HOSTNAME=%s", container.Config.Hostname))
args = append(args, container.Config.Env...) args = append(args, container.Config.Env...)
args = append(args, cmd...) args = append(args, cmd...)
glog.Infof("ARGS %#v", args)
command := exec.Command("nsenter", args...) command := exec.Command("nsenter", args...)
// TODO use exec.LookPath // TODO use exec.LookPath
if tty { if tty {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment