Skip to content

Commit 2bb9d4f

Browse files
committed
Show 'az webapp status' tip on RuntimeFailed deployment status
1 parent 26b5458 commit 2bb9d4f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

  • src/azure-cli/azure/cli/command_modules/appservice

src/azure-cli/azure/cli/command_modules/appservice/custom.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10076,6 +10076,8 @@ def _poll_deployment_runtime_status(cmd, resource_group_name, webapp_name, slot,
1007610076
_log_webapp_status_tip(webapp_name, resource_group_name, True)
1007710077
break
1007810078
if deployment_status == "RuntimeFailed":
10079+
if not status_tip_logged:
10080+
_log_webapp_status_tip(webapp_name, resource_group_name, True)
1007910081
error_text = ""
1008010082
total_num_instances = int(deployment_properties.get('numberOfInstancesInProgress')) + \
1008110083
int(deployment_properties.get('numberOfInstancesSuccessful')) + \

0 commit comments

Comments
 (0)