From 9703a03cff56f7ea0e97f6275637d137bbcc2544 Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Thu, 10 Aug 2017 04:34:30 -0300 Subject: [bug] track namespace information on blobs client A reported bug on namespace feature was that we couldn't delete a namespaced blob after a cold start, since the client wasn't able to check which namespace it belongs. This commits completes the tracking of namespace over client site code, making it possible to query and store namespce information on disk, through sqlcipher. -- Resolves: #8882 --- testing/tests/blobs/test_sqlcipher_client_backend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testing/tests/blobs/test_sqlcipher_client_backend.py') diff --git a/testing/tests/blobs/test_sqlcipher_client_backend.py b/testing/tests/blobs/test_sqlcipher_client_backend.py index b67215e8..6193b486 100644 --- a/testing/tests/blobs/test_sqlcipher_client_backend.py +++ b/testing/tests/blobs/test_sqlcipher_client_backend.py @@ -71,4 +71,4 @@ class SQLBackendTestCase(unittest.TestCase): len(content))) yield defer.gatherResults(deferreds) result = yield self.local.list() - self.assertEquals(blob_ids, result) + self.assertEquals(set(blob_ids), set(result)) -- cgit v1.2.3