diff --git a/lib/ansible/executor/process/result.py b/lib/ansible/executor/process/result.py index c7027412ff..3ed2a28e80 100644 --- a/lib/ansible/executor/process/result.py +++ b/lib/ansible/executor/process/result.py @@ -27,6 +27,8 @@ import sys import time import traceback +# TODO: not needed if we use the cryptography library with its default RNG +# engine HAS_ATFORK=True try: from Crypto.Random import atfork diff --git a/lib/ansible/executor/process/worker.py b/lib/ansible/executor/process/worker.py index d73434652a..5fb4d6250b 100644 --- a/lib/ansible/executor/process/worker.py +++ b/lib/ansible/executor/process/worker.py @@ -27,6 +27,8 @@ import sys import time import traceback +# TODO: not needed if we use the cryptography library with its default RNG +# engine HAS_ATFORK=True try: from Crypto.Random import atfork