From 25a35f470f597eba8479cc0178193ac963ee6350 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Sat, 30 Sep 2017 01:59:44 -0300 Subject: [bug] set as PROCESSING during processing flow It was previously setting to PROCESSED. Also added some tests to check if the underlying wrapped calls matches the intent. -- Resolves: #8955 --- src/leap/soledad/client/incoming.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/leap/soledad/client/incoming.py b/src/leap/soledad/client/incoming.py index 42522303..aa7065e8 100644 --- a/src/leap/soledad/client/incoming.py +++ b/src/leap/soledad/client/incoming.py @@ -131,7 +131,7 @@ class IncomingBox: :rtype: Deferred """ try: - yield self.blob_manager.set_flags(blob_id, [Flags.PROCESSED], + yield self.blob_manager.set_flags(blob_id, [Flags.PROCESSING], namespace=self.namespace) except: defer.returnValue(None) -- cgit v1.2.3