summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2014-10-07 11:32:23 -0300
committerKali Kaneko <kali@leap.se>2015-02-11 14:03:17 -0400
commit1ae8f27c622034dc9524dab4b971bf0828966dd1 (patch)
tree858d0f1b74cd99e4f9b04c8b5a6dd217a6491a4e /client
parent8f4daa13744c049dcc96eb2cb780df1e9ba08738 (diff)
Adapt sqlcipher tests to new api.
Diffstat (limited to 'client')
-rw-r--r--client/src/leap/soledad/client/sqlcipher.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/client/src/leap/soledad/client/sqlcipher.py b/client/src/leap/soledad/client/sqlcipher.py
index a7e9e0fe..c645bb8d 100644
--- a/client/src/leap/soledad/client/sqlcipher.py
+++ b/client/src/leap/soledad/client/sqlcipher.py
@@ -502,9 +502,10 @@ class SQLCipherU1DBSync(object):
else:
sync_db_path = ":memory:"
- # ---------------------------------------------------------
- # TODO use a separate adbapi for this (sqlcipher only, no u1db)
- # We could control that it only has 1 or 2 threads.
+ # XXX use initialize_sqlcipher_db here too
+ # TODO pass on_init queries to initialize_sqlcipher_db
+ self._sync_db = None#MPSafeSQLiteDB(sync_db_path)
+ pragmas.set_crypto_pragmas(self._sync_db, opts)
opts.path = sync_db_path