ci: fix procps command line format warning
This commit is contained in:
parent
866438aec6
commit
fa8755085a
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue