Skip to content

Commit

Permalink
Update messaging on host failure
Browse files Browse the repository at this point in the history
  • Loading branch information
gzpcho authored Feb 13, 2024
1 parent ecd771a commit 65f9f0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deploy-board/deploy_board/webapp/templatetags/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ def hostTip(host):
hostname = host['hostName']
if host['state'] == 'PROVISIONED':
if host["ip"] is None:
return "{}: Host is provisioning, but failure occured and requires manual termination or restart".format(hostname)
return "{}: Host is provisioning, but failure occured and might require manual termination or restart after retries".format(hostname)
return '{}: Host is provisioning, click for more information'.format(hostname)

if host['state'] == 'ACTIVE':
Expand Down

0 comments on commit 65f9f0c

Please sign in to comment.