ci: fix procps command line format warning

This commit is contained in:
David Wilson 2019-08-14 11:47:04 +01:00
parent 866438aec6
commit fa8755085a
1 changed files with 1 additions and 1 deletions

View File

@ -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