diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-01-15 13:41:15 +0100 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-01-15 13:42:21 +0100 |
commit | d8d42512c15b32a9013938018cdc0f441561944e (patch) | |
tree | 45cecfbceaba8b6f7d4b7b828a5b411d749b5381 /pkg/api/handlers/generic | |
parent | b9be9e6170faed90b2673788be08fb0a34da0962 (diff) | |
download | podman-d8d42512c15b32a9013938018cdc0f441561944e.tar.gz podman-d8d42512c15b32a9013938018cdc0f441561944e.tar.bz2 podman-d8d42512c15b32a9013938018cdc0f441561944e.zip |
v2: stats: drop redundant sleep when streaming
Also remove the redundant stats handler in libpod.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'pkg/api/handlers/generic')
-rw-r--r-- | pkg/api/handlers/generic/containers_stats.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/api/handlers/generic/containers_stats.go b/pkg/api/handlers/generic/containers_stats.go index 4fb856bdb..26c8efa15 100644 --- a/pkg/api/handlers/generic/containers_stats.go +++ b/pkg/api/handlers/generic/containers_stats.go @@ -76,7 +76,6 @@ func StatsContainer(w http.ResponseWriter, r *http.Request) { OnlineCPUs: 0, ThrottlingData: docker.ThrottlingData{}, } - time.Sleep(DefaultStatsPeriod) } for ok := true; ok; ok = query.Stream { |