diff options
author | Jhon Honce <jhonce@redhat.com> | 2021-11-01 14:17:30 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2021-11-02 08:11:14 -0700 |
commit | 449cc7a5c217dbc1296f2f3fcc63d0b9b9826bec (patch) | |
tree | 66d3913b98af4892dc371a218fb743dc9e1ba7f1 /test/apiv2/40-pods.at | |
parent | 3147ff829b3d43c4bb3a32e09e2e3fae13ccd6f4 (diff) | |
download | podman-449cc7a5c217dbc1296f2f3fcc63d0b9b9826bec.tar.gz podman-449cc7a5c217dbc1296f2f3fcc63d0b9b9826bec.tar.bz2 podman-449cc7a5c217dbc1296f2f3fcc63d0b9b9826bec.zip |
Implement top streaming for containers and pods
* Implement API query parameter stream and delay for containers and
pods top endpoints
* Update swagger with breaking changes
* Add python API tests for endpoints
Fixes #12115
Signed-off-by: Jhon Honce <jhonce@redhat.com>
Diffstat (limited to 'test/apiv2/40-pods.at')
-rw-r--r-- | test/apiv2/40-pods.at | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/apiv2/40-pods.at b/test/apiv2/40-pods.at index 985b26411..f45e85f61 100644 --- a/test/apiv2/40-pods.at +++ b/test/apiv2/40-pods.at @@ -110,11 +110,11 @@ t GET libpod/pods/fakename/top 404 \ .cause="no such pod" t GET libpod/pods/foo/top 200 \ - .Processes[0][-1]="/pause " \ + .Processes[0][-1]="/pause" \ .Titles[-1]="COMMAND" t GET libpod/pods/foo/top?ps_args=args,pid 200 \ - .Processes[0][0]="/pause " \ + .Processes[0][0]="/pause" \ .Processes[0][1]="1" \ .Titles[0]="COMMAND" \ .Titles[1]="PID" \ |