Change Signer to use the config provider and fix tests

Fixes the broken ACI tests
This commit is contained in:
Joseph Schorr 2016-05-23 17:10:03 -04:00
parent 5568cc77b8
commit f670c4c7a9
5 changed files with 23 additions and 16 deletions

2
app.py
View file

@ -177,7 +177,7 @@ build_logs = BuildLogs(app)
authentication = UserAuthentication(app, config_provider, OVERRIDE_CONFIG_DIRECTORY)
userevents = UserEventsBuilderModule(app)
superusers = SuperUserManager(app)
signer = Signer(app, OVERRIDE_CONFIG_DIRECTORY)
signer = Signer(app, config_provider)
start_cloudwatch_sender(metric_queue, app)
tf = app.config['DB_TRANSACTION_FACTORY']