From fa8755085a9a1534ff347c7df5a86a723ab4bf99 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Wed, 14 Aug 2019 11:47:04 +0100 Subject: [PATCH] ci: fix procps command line format warning --- .ci/ci_lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/ci_lib.py b/.ci/ci_lib.py index 971ae5d8..dc7a02a8 100644 --- a/.ci/ci_lib.py +++ b/.ci/ci_lib.py @@ -233,7 +233,7 @@ def proc_is_docker(pid): def get_interesting_procs(container_name=None): - args = ['ps', '-a', '-x', '-oppid=', '-opid=', '-ocomm=', '-ocommand='] + args = ['ps', 'ax', '-oppid=', '-opid=', '-ocomm=', '-ocommand='] if container_name is not None: args = ['docker', 'exec', container_name] + args