Merge pull request #8169 from unclejack/avoid_attach_alloc

daemon/attach: avoid mem alloc for interface
Upstream-commit: 06d0853682314c973eb976e011795b0a880cc540
Component: engine
This commit is contained in:
unclejack
2014-09-22 21:29:50 +03:00
+2 -3
View File
@@ -2,7 +2,6 @@ package daemon
import (
"encoding/json"
"fmt"
"io"
"os"
"time"
@@ -69,10 +68,10 @@ func (daemon *Daemon) ContainerAttach(job *engine.Job) engine.Status {
break
}
if l.Stream == "stdout" && stdout {
fmt.Fprintf(job.Stdout, "%s", l.Log)
io.WriteString(job.Stdout, l.Log)
}
if l.Stream == "stderr" && stderr {
fmt.Fprintf(job.Stderr, "%s", l.Log)
io.WriteString(job.Stderr, l.Log)
}
}
}