mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
switched from threading to multiprocessing
functions same, just keeping names from confusing people
This commit is contained in:
parent
df4912957c
commit
af68ae1e87
1 changed files with 2 additions and 2 deletions
4
lib/ansible/plugins/cache/memcached.py
vendored
4
lib/ansible/plugins/cache/memcached.py
vendored
|
@ -21,7 +21,7 @@ import collections
|
|||
import os
|
||||
import sys
|
||||
import time
|
||||
import threading
|
||||
from multiprocessing import Lock
|
||||
from itertools import chain
|
||||
|
||||
from ansible import constants as C
|
||||
|
@ -53,7 +53,7 @@ class ProxyClientPool(object):
|
|||
self._num_connections = 0
|
||||
self._available_connections = collections.deque(maxlen=self.max_connections)
|
||||
self._locked_connections = set()
|
||||
self._lock = threading.Lock()
|
||||
self._lock = Lock()
|
||||
|
||||
def _check_safe(self):
|
||||
if self.pid != os.getpid():
|
||||
|
|
Loading…
Reference in a new issue