From 23536ee6f80c7b531ac2a2de9bd404d9a5f21df4 Mon Sep 17 00:00:00 2001 From: drebs Date: Tue, 2 Jun 2015 08:33:18 -0300 Subject: [bug] use correct sync enc pool queue attribute --- client/src/leap/soledad/client/encdecpool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3