diff options
author | drebs <drebs@leap.se> | 2013-11-19 13:13:04 -0200 |
---|---|---|
committer | drebs <drebs@leap.se> | 2013-11-19 13:23:52 -0200 |
commit | d6786aabd5af26dcc949f97174d5bdbd103277c1 (patch) | |
tree | d770851337405723d9696f273cc14c783bb631d5 | |
parent | d51d6bedfecd41491f2c8243235e7d3db043a4d7 (diff) |
Fix soledad bootstrap subtasks order. Closes #4537.
-rw-r--r-- | changes/bug_4537_fix-bootstrap-subtasks-order-and-key-upload | 1 | ||||
-rw-r--r-- | src/leap/bitmask/services/soledad/soledadbootstrapper.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/changes/bug_4537_fix-bootstrap-subtasks-order-and-key-upload b/changes/bug_4537_fix-bootstrap-subtasks-order-and-key-upload new file mode 100644 index 00000000..5e01c5a2 --- /dev/null +++ b/changes/bug_4537_fix-bootstrap-subtasks-order-and-key-upload @@ -0,0 +1 @@ +- Fix soledad bootstrap subtasks order. Closes #4537. diff --git a/src/leap/bitmask/services/soledad/soledadbootstrapper.py b/src/leap/bitmask/services/soledad/soledadbootstrapper.py index e8c7e9ce..d078ae96 100644 --- a/src/leap/bitmask/services/soledad/soledadbootstrapper.py +++ b/src/leap/bitmask/services/soledad/soledadbootstrapper.py @@ -196,7 +196,7 @@ class SoledadBootstrapper(AbstractBootstrapper): leap_assert(not sameProxiedObjects(self._soledad, None), "Null soledad, error while initializing") - self.deferred = deferToThread(self._do_soledad_sync) + self._do_soledad_sync() def _do_soledad_sync(self): """ |