Skip to content

Commit

Permalink
pass kwargs on from deploy_env into the beanstalk deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Berg authored and Eric Berg committed Jun 25, 2020
1 parent 776a084 commit 41ea068
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion chalicelib/checks/deployment_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,8 @@ def deploy_env(connection, env_to_deploy, application_name, check, **kwargs):
this_check = CheckResult(connection, check)
helper_check = _deploy_application_to_beanstalk(connection,
env=env_to_deploy,
branch='master')
branch='master',
**kwargs)
if helper_check.status == 'PASS':
this_check.status = 'PASS'
this_check.summary = 'Successfully deployed {0} master to {1}'.format(application_name, env_to_deploy)
Expand Down

0 comments on commit 41ea068

Please sign in to comment.