mirror of https://github.com/ansible/ansible.git
module_common - handle cache directory creation collision (#75106)
* module_common - handle cache directory creation collision Occasionally multiple workers can try to create the cache directory if it exists. Catch the exception and handle it. * Just re-raise if it doesn't exist rather than trying again * Use exists_ok rather than handling an exception * Remove unused import and unused variable * Go back to try/except but with OSError Since we do not have split controller remote, this needs to be able to run in Python 2 in order to be merged currently.pull/75119/head
parent
230c00e937
commit
16a74b798c
@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- module_common - handle exception when multiple workers try to create the cache directory
|
Loading…
Reference in New Issue