summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2015-06-02 08:33:18 -0300
committerdrebs <drebs@leap.se>2015-06-03 16:07:50 -0300
commit23536ee6f80c7b531ac2a2de9bd404d9a5f21df4 (patch)
tree0b1d128cdca31c1686c140dbc836cd52c60c30d9
parent79ea2afaf246c519245949ab4479b64d83790e60 (diff)
[bug] use correct sync enc pool queue attribute
-rw-r--r--client/src/leap/soledad/client/encdecpool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/leap/soledad/client/encdecpool.py b/client/src/leap/soledad/client/encdecpool.py
index d9a72b25..60b8d8ef 100644
--- a/client/src/leap/soledad/client/encdecpool.py
+++ b/client/src/leap/soledad/client/encdecpool.py
@@ -171,7 +171,7 @@ class SyncEncrypterPool(SyncEncryptDecryptPool):
:type doc: SoledadDocument
"""
try:
- self.sync_queue.put_nowait(doc)
+ self._sync_queue.put_nowait(doc)
except multiprocessing.Queue.Full:
# do not asynchronously encrypt this file if the queue is full
pass