Skip to content

Commit

Permalink
Convert our locally added prod_deploy() endpoint to use AppKeys (#336)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmarshall authored May 23, 2024
1 parent 1837104 commit 4a7910c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/ci/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ async def prod_deploy(request, userdata):
developers=[],
)
watched_branch.sha = params['sha']
await watched_branch._start_deploy(db=app['db'], batch_client=app['batch_client'], steps=steps)
await watched_branch._start_deploy(db=app[AppKeys.DB], batch_client=app[AppKeys.BATCH_CLIENT], steps=steps)

batch = watched_branch.deploy_batch
if not isinstance(batch, MergeFailureBatch):
Expand Down

0 comments on commit 4a7910c

Please sign in to comment.