summaryrefslogtreecommitdiff
path: root/pkg/varlinkapi/virtwriter/virtwriter.go
diff options
context:
space:
mode:
authorPeter Hunt <pehunt@redhat.com>2019-07-23 13:46:03 -0400
committerPeter Hunt <pehunt@redhat.com>2019-07-23 16:49:04 -0400
commit82dce36fb6ef3839c029b7450a75c85cf28cf377 (patch)
tree15ec26b274bd16f1c88f3887d738057a021ce1b5 /pkg/varlinkapi/virtwriter/virtwriter.go
parentd59f083637f267b3653bc7cda46fd729dcf35c17 (diff)
downloadpodman-82dce36fb6ef3839c029b7450a75c85cf28cf377.tar.gz
podman-82dce36fb6ef3839c029b7450a75c85cf28cf377.tar.bz2
podman-82dce36fb6ef3839c029b7450a75c85cf28cf377.zip
remove debug prints
Signed-off-by: Peter Hunt <pehunt@redhat.com>
Diffstat (limited to 'pkg/varlinkapi/virtwriter/virtwriter.go')
-rw-r--r--pkg/varlinkapi/virtwriter/virtwriter.go11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkg/varlinkapi/virtwriter/virtwriter.go b/pkg/varlinkapi/virtwriter/virtwriter.go
index bde3107df..27ecd1f52 100644
--- a/pkg/varlinkapi/virtwriter/virtwriter.go
+++ b/pkg/varlinkapi/virtwriter/virtwriter.go
@@ -113,7 +113,7 @@ func Reader(r *bufio.Reader, output, errput, input io.Writer, resize chan remote
if output != nil {
_, err := io.CopyN(output, r, messageSize)
if err != nil {
- return errors.Wrapf(err, "issue stdout")
+ return err
}
}
case ToStderr:
@@ -121,14 +121,13 @@ func Reader(r *bufio.Reader, output, errput, input io.Writer, resize chan remote
_, err := io.CopyN(errput, r, messageSize)
if err != nil {
return err
- return errors.Wrapf(err, "issue stderr")
}
}
case ToStdin:
if input != nil {
_, err := io.CopyN(input, r, messageSize)
if err != nil {
- return errors.Wrapf(err, "issue stdin")
+ return err
}
}
case TerminalResize:
@@ -138,13 +137,13 @@ func Reader(r *bufio.Reader, output, errput, input io.Writer, resize chan remote
_, err = io.ReadFull(r, out)
if err != nil {
- return errors.Wrapf(err, "issue resizing")
+ return err
}
}
// Resize events come over in bytes, need to be reserialized
resizeEvent := remotecommand.TerminalSize{}
if err := json.Unmarshal(out, &resizeEvent); err != nil {
- return errors.Wrapf(err, "issue resizing")
+ return err
}
resize <- resizeEvent
}
@@ -154,7 +153,7 @@ func Reader(r *bufio.Reader, output, errput, input io.Writer, resize chan remote
_, err = io.ReadFull(r, out)
if err != nil {
- return errors.Wrapf(err, "issue quitting")
+ return err
}
}
if execEcChan != nil {