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.
pull/98/head
Ryan Kelly 7 years ago committed by GitHub
parent 72d618f3ee
commit cf944cf4c9

@ -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

@ -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")

Loading…
Cancel
Save