summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authordrebs <drebs@leap.se>2014-01-06 10:29:43 -0200
committerdrebs <drebs@leap.se>2014-01-06 10:29:43 -0200
commit89d3e4a1321ff9701ac67933f8e649cfecd1d95e (patch)
tree268983c0ac554860c39f25a7521fe45bc816aab7 /client
parenta2fc60a03f701abd2309dee23c383f1189ce3cf4 (diff)
Add proper error reporting to shared db lock.
Diffstat (limited to 'client')
-rw-r--r--client/changes/bug_4435_catch-lock-timeout-exception1
-rw-r--r--client/src/leap/soledad/client/__init__.py3
2 files changed, 4 insertions, 0 deletions
diff --git a/client/changes/bug_4435_catch-lock-timeout-exception b/client/changes/bug_4435_catch-lock-timeout-exception
new file mode 100644
index 00000000..12c05685
--- /dev/null
+++ b/client/changes/bug_4435_catch-lock-timeout-exception
@@ -0,0 +1 @@
+ o Catch lock timeout exception (#4435).
diff --git a/client/src/leap/soledad/client/__init__.py b/client/src/leap/soledad/client/__init__.py
index d35d3a2a..11e8585b 100644
--- a/client/src/leap/soledad/client/__init__.py
+++ b/client/src/leap/soledad/client/__init__.py
@@ -54,6 +54,7 @@ from leap.soledad.common.errors import (
InvalidTokenError,
NotLockedError,
AlreadyLockedError,
+ LockTimedOutError,
)
from leap.soledad.common.crypto import (
MacMethods,
@@ -410,6 +411,8 @@ class Soledad(object):
token, timeout = self._shared_db.lock()
except AlreadyLockedError:
raise BootstrapSequenceError('Database is already locked.')
+ except LockTimedOutError:
+ raise BootstrapSequenceError('Lock operation timed out.')
try:
self._get_or_gen_crypto_secrets()