mirror of https://github.com/ansible/ansible.git
wait_for - ignore psutil related errors (#72401)
When enumerating connections with psutil, catch and ignore errors to avoid returning a stack trace. Co-authored-by: Matt Martz <matt@sivel.net>pull/72408/head
parent
e73a0b2460
commit
fb09fd2a23
@ -0,0 +1,2 @@
|
|||||||
|
bugfixes:
|
||||||
|
- wait_for - catch and ignore errors when getting active connections with psutil (https://github.com/ansible/ansible/issues/72322)
|
@ -0,0 +1,13 @@
|
|||||||
|
from __future__ import absolute_import, division, print_function
|
||||||
|
__metaclass__ = type
|
||||||
|
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
import time
|
||||||
|
|
||||||
|
child_pid = os.fork()
|
||||||
|
|
||||||
|
if child_pid > 0:
|
||||||
|
time.sleep(60)
|
||||||
|
else:
|
||||||
|
sys.exit()
|
Loading…
Reference in New Issue