summaryrefslogtreecommitdiff
path: root/service/pixelated/config
diff options
context:
space:
mode:
authorNavaL <ayoyo@thoughtworks.com>2016-11-04 10:11:54 +0100
committerNavaL <ayoyo@thoughtworks.com>2016-11-04 10:12:05 +0100
commit884fe56eba9a7ad0400226ab91ee5e9a93c6f4c9 (patch)
treed3ba3e590041f6c702d9cd8d7d3b5e7c1e486c74 /service/pixelated/config
parentc85739da6cbf3add1119b4c9a7f7475833d0531e (diff)
[#795] fixed missing yield on authenticate in leap initialize for activist mode
Diffstat (limited to 'service/pixelated/config')
-rw-r--r--service/pixelated/config/leap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/pixelated/config/leap.py b/service/pixelated/config/leap.py
index 4e9d8394..4832b6d2 100644
--- a/service/pixelated/config/leap.py
+++ b/service/pixelated/config/leap.py
@@ -55,7 +55,7 @@ def initialize_leap_single_user(leap_provider_cert,
provider = initialize_leap_provider(provider, leap_provider_cert, leap_provider_cert_fingerprint, leap_home)
- auth = Authenticator(provider).authenticate(username, password)
+ auth = yield Authenticator(provider).authenticate(username, password)
leap_session = yield create_leap_session(provider, username, password, auth)