diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-11-01 14:34:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-01 14:34:40 +0100 |
commit | 69165fa04d9db306809a0b110491f9a572f74431 (patch) | |
tree | 4399ffe534b5dbbb4a0963ba07a60f15c2d2eb73 /libpod/healthcheck.go | |
parent | 9a28a12c9bc6f681558f7aa6f797765262fab81b (diff) | |
parent | 1df4dba0a0c335ad68b1c2202b8099cd87aa3d94 (diff) | |
download | podman-69165fa04d9db306809a0b110491f9a572f74431.tar.gz podman-69165fa04d9db306809a0b110491f9a572f74431.tar.bz2 podman-69165fa04d9db306809a0b110491f9a572f74431.zip |
Merge pull request #4400 from haircommander/exec-hang
Switch to bufio Reader for exec streams
Diffstat (limited to 'libpod/healthcheck.go')
-rw-r--r-- | libpod/healthcheck.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libpod/healthcheck.go b/libpod/healthcheck.go index 68ffc2349..e9c950713 100644 --- a/libpod/healthcheck.go +++ b/libpod/healthcheck.go @@ -133,7 +133,9 @@ func (c *Container) runHealthCheck() (HealthCheckStatus, error) { streams := new(AttachStreams) streams.OutputStream = hcw streams.ErrorStream = hcw - streams.InputStream = os.Stdin + + streams.InputStream = bufio.NewReader(os.Stdin) + streams.AttachOutput = true streams.AttachError = true streams.AttachInput = true |