From cf944cf4c9d46800478f2aa523ef02aa10a2b5c4 Mon Sep 17 00:00:00 2001 From: Ryan Kelly Date: Tue, 30 May 2017 07:33:48 +1000 Subject: [PATCH] Update dependencies to fix LocalVerifier support (#93) Fixes #91, by pulling in a new version of tokenserver's LocalVerifier class that properly supports the extra "idpClaims" property that we use for tracking FxA generation numbers. --- requirements.txt | 4 ++-- syncserver/__init__.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index c11d9a9..7a2361f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -9,5 +9,5 @@ unittest2==1.1 zope.component==4.2.1 configparser==3.5 mozsvc==0.9 -https://github.com/mozilla-services/tokenserver/archive/1.2.23.zip -https://github.com/mozilla-services/server-syncstorage/archive/1.6.2.zip +https://github.com/mozilla-services/tokenserver/archive/b6a24f32a56ed4fde25c6b5ebead2f86781a6002.zip +https://github.com/mozilla-services/server-syncstorage/archive/10ab50027f3d7b5bf7af4354ebdbc62cc6a81a2f.zip diff --git a/syncserver/__init__.py b/syncserver/__init__.py index 1239867..e65f081 100644 --- a/syncserver/__init__.py +++ b/syncserver/__init__.py @@ -114,6 +114,7 @@ def includeme(config): settings["fxa.metrics_uid_secret_key"] = os.urandom(16).encode("hex") # Include the relevant sub-packages. + config.scan("syncserver", ignore=["syncserver.wsgi_app"]) config.include("syncstorage", route_prefix="/storage") config.include("tokenserver", route_prefix="/token")