summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/leap/soledad/openstack.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/leap/soledad/openstack.py b/src/leap/soledad/openstack.py
index 514a4c58..9a8a6166 100644
--- a/src/leap/soledad/openstack.py
+++ b/src/leap/soledad/openstack.py
@@ -15,6 +15,7 @@ class OpenStackDatabase(CommonBackend):
self.set_document_factory(LeapDocument)
self._connection = swiftclient.Connection(self._auth_url, self._user,
self._auth_key)
+ self._get_auth()
#-------------------------------------------------------------------------
# implemented methods from Database
@@ -125,9 +126,7 @@ class OpenStackDatabase(CommonBackend):
raise NotImplementedError(self._initialize)
def _get_auth(self):
- self._url, self._auth_token = self._connection.get_auth(self._auth_url,
- self._user,
- self._auth_key)
+ self._url, self._auth_token = self._connection.get_auth()
return self._url, self.auth_token