diff options
author | drebs <drebs@leap.se> | 2016-07-05 07:45:06 +0200 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2016-07-12 03:09:26 +0200 |
commit | b3fb215860a8e50e4a6c551fef78628acdbf25c7 (patch) | |
tree | 3ad0346ef3ae9bfdc7b70b9c37744b0438562a87 | |
parent | 8a3bbc6c81f10d8e00fcdd779784f327425f1942 (diff) |
[bug] use default sqlcipher timeout
-rw-r--r-- | client/src/leap/soledad/client/adbapi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/leap/soledad/client/adbapi.py b/client/src/leap/soledad/client/adbapi.py index cfd7675c..328b4762 100644 --- a/client/src/leap/soledad/client/adbapi.py +++ b/client/src/leap/soledad/client/adbapi.py @@ -49,7 +49,7 @@ if DEBUG_SQL: How long the SQLCipher connection should wait for the lock to go away until raising an exception. """ -SQLCIPHER_CONNECTION_TIMEOUT = 10 +SQLCIPHER_CONNECTION_TIMEOUT = 5 """ How many times a SQLCipher query should be retried in case of timeout. |