Change Signer to use the config provider and fix tests
Fixes the broken ACI tests
This commit is contained in:
parent
5568cc77b8
commit
f670c4c7a9
5 changed files with 23 additions and 16 deletions
2
app.py
2
app.py
|
@ -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']
|
||||
|
|
Reference in a new issue