diff options
author | Tulio Casagrande <tcasagra@thoughtworks.com> | 2016-08-24 18:39:48 -0300 |
---|---|---|
committer | Tulio Casagrande <tcasagra@thoughtworks.com> | 2016-08-24 18:39:48 -0300 |
commit | debb86dfc9cf70d310bd3b45dc32c91d5d26b9d1 (patch) | |
tree | 3acbc834d025c9c0a8e0ba2644c5abcb12fa519a /service/pixelated/config | |
parent | f758f916fe585e55b17f61291de8733e3afe379d (diff) |
[#762] Remove smtp-service download from session creation
SMTP json is a blocking HTTP request that was taking ~1 sec
of the session creation. We moved it to the UA initialization
Diffstat (limited to 'service/pixelated/config')
-rw-r--r-- | service/pixelated/config/leap.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/service/pixelated/config/leap.py b/service/pixelated/config/leap.py index 52e84386..91c8db1f 100644 --- a/service/pixelated/config/leap.py +++ b/service/pixelated/config/leap.py @@ -22,6 +22,7 @@ def initialize_leap_provider(provider_hostname, provider_cert, provider_fingerpr provider.download_certificate() LeapCertificate(provider).setup_ca_bundle() provider.download_soledad_json() + provider.download_smtp_json() return provider |