Skip to content

Commit f2e35be

Browse files
committed
issue #482: remove 'ssh' from checked processes
Can't be used due to regular Ansible behaviour
1 parent faec015 commit f2e35be

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.ci/ci_lib.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,9 @@ def make_containers(name_prefix='', port_offset=0):
215215
return lst
216216

217217

218-
INTERESTING_COMMS = ('python', 'ssh', 'sudo', 'su', 'doas')
218+
# ssh removed from here because 'linear' strategy relies on processes that hang
219+
# around after the Ansible run completes
220+
INTERESTING_COMMS = ('python', 'sudo', 'su', 'doas')
219221

220222

221223
def proc_is_docker(pid):

0 commit comments

Comments
 (0)