diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-01-15 23:33:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-15 23:33:10 +0100 |
commit | 741e29caf39c57551724a48265f6d9641f8f6fe0 (patch) | |
tree | 402ec832106bdc4da02fcc30927c465152b1fe72 /pkg/api/handlers/generic/containers_stats.go | |
parent | 0870e88ff48eaf6b5624044b7cd2bc35cff85150 (diff) | |
parent | 69bd57f518cbc7c97808a663d76066d0d247ac0f (diff) | |
download | podman-741e29caf39c57551724a48265f6d9641f8f6fe0.tar.gz podman-741e29caf39c57551724a48265f6d9641f8f6fe0.tar.bz2 podman-741e29caf39c57551724a48265f6d9641f8f6fe0.zip |
Merge pull request #4860 from vrothberg/v2-top
v2 api: top improvements
Diffstat (limited to 'pkg/api/handlers/generic/containers_stats.go')
-rw-r--r-- | pkg/api/handlers/generic/containers_stats.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/api/handlers/generic/containers_stats.go b/pkg/api/handlers/generic/containers_stats.go index 26c8efa15..e33d37606 100644 --- a/pkg/api/handlers/generic/containers_stats.go +++ b/pkg/api/handlers/generic/containers_stats.go @@ -43,7 +43,7 @@ func StatsContainer(w http.ResponseWriter, r *http.Request) { return } - // If the container isn't returning, then let's not bother and return + // If the container isn't running, then let's not bother and return // immediately. state, err := ctnr.State() if err != nil { |