mirror of https://github.com/ansible/ansible.git
When enumerating connections with psutil, catch and ignore errors to avoid returning a stack trace.
Co-authored-by: Matt Martz <matt@sivel.net>
(cherry picked from commit fb09fd2a23
)
pull/72904/head
parent
c422bc64dc
commit
4e34aa0c19
@ -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