mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-21 19:43:59 -07:00
Use locking for concurrent file access (#52567)
* Use locking for concurrent file access This implements locking to be used for modules that are used for concurrent file access, like lineinfile or known_hosts. * Reinstate lock_timeout This commit includes: - New file locking infrastructure for modules - Enable timeout tests - Madifications to support concurrency with lineinfile * Rebase, update changelog and tests We need to specify ansible_python_interpreter to avoid running interpreter discovery and selecting the incorrect interpreter. Remove the import of lock in known_hosts since it is not used.
This commit is contained in:
parent
dc6c0cb9f8
commit
e152b277cf
9 changed files with 363 additions and 225 deletions
|
@ -0,0 +1,3 @@
|
|||
bugfixes:
|
||||
- change file locking implementation from a class to context manager to allow easy and safe concurrent file access by modules
|
||||
- lineinfile - lock on concurrent file access (https://github.com/ansible/ansible/issues/30413)
|
Loading…
Add table
Add a link
Reference in a new issue