diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-05-27 13:51:48 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-05-27 13:51:48 +0200 |
commit | 3cef598fc2b2d75ceb02ea8546327b03bc927b55 (patch) | |
tree | e29f0111c611f87870213129f29cd4ab3c30f73a /cmd/podman | |
parent | 119e13d4bcc3e8da903da33b291f2795b0e76e71 (diff) | |
download | podman-3cef598fc2b2d75ceb02ea8546327b03bc927b55.tar.gz podman-3cef598fc2b2d75ceb02ea8546327b03bc927b55.tar.bz2 podman-3cef598fc2b2d75ceb02ea8546327b03bc927b55.zip |
container stats: fix --no-stream race
Fix a race in `podman container stats` by waiting for the client to
consume the data in the channel. This requires a `sync.WaitGroup` (or
semaphore) in the client and to also close the channel the backend.
Fixes: #6405
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'cmd/podman')
-rw-r--r-- | cmd/podman/containers/stats.go | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/cmd/podman/containers/stats.go b/cmd/podman/containers/stats.go index 5b7f52cc7..c61b161e4 100644 --- a/cmd/podman/containers/stats.go +++ b/cmd/podman/containers/stats.go @@ -4,6 +4,7 @@ import ( "fmt" "os" "strings" + "sync" "text/tabwriter" "text/template" @@ -111,14 +112,20 @@ func stats(cmd *cobra.Command, args []string) error { } } statsOptions.StatChan = make(chan []*define.ContainerStats, 1) + wg := sync.WaitGroup{} + wg.Add(1) go func() { for reports := range statsOptions.StatChan { if err := outputStats(reports); err != nil { logrus.Error(err) } } + wg.Done() + }() - return registry.ContainerEngine().ContainerStats(registry.Context(), args, statsOptions) + err := registry.ContainerEngine().ContainerStats(registry.Context(), args, statsOptions) + wg.Wait() + return err } func outputStats(reports []*define.ContainerStats) error { |