Skip to content

Commit

Permalink
minor requested changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Berg authored and Eric Berg committed Jun 26, 2020
1 parent 41ea068 commit 61d5c27
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions chalicelib/checks/deployment_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@ def deploy_env(connection, env_to_deploy, application_name, check, **kwargs):
**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)
this_check.summary = ('Successfully deployed {what} master to {where}'
.format(what=application_name, where=env_to_deploy))
else:
this_check.status = 'ERROR'
this_check.summary = 'Error occurred during deployment, see full_output'
Expand Down Expand Up @@ -258,4 +259,4 @@ def deploy_cgap_production(connection, **kwargs):
env_to_deploy=compute_cgap_prd_env(),
application_name="CGAP Portal",
check='deploy_cgap_production',
**kwargs)
**kwargs)

0 comments on commit 61d5c27

Please sign in to comment.