An Azure service that provides a platform-managed, scalable, and highly available application delivery controller as a service.
Hi Joshua Jiji (Centific Technologies Inc),
Thanks for reaching out in Microsoft Q&A forum,
The GwmOperationTimeOut error indicates that the Application Gateway operation did not complete within the expected timeframe. This can occur when a previous gateway update is still in progress, when multiple operations target the same Application Gateway, or when the resource provider encounters delays processing the request.
Steps:
- Check the provisioning state
Look foraz network application-gateway show \ --resource-group <resource-group> \ --query "{provisioningState: provisioningState, operationalState: operationalState}"Updating,Failed, orSucceeded. - Review the Activity Log Azure Portal > Application Gateway > Activity log > Filter by Failed events > Check the
statusMessagein JSON view for the root cause (SSL cert, backend pool, WAF policy, etc.). - Check for concurrent operations Multiple deployments to the same gateway can cause later operations to wait or fail. If another operation is in progress, wait 15–30 minutes before retrying.
- Retry after verifying no active operation If the gateway has been in
Updatingstate for an extended period with no progress, retry the deployment. - Optional: Harmless configuration refresh If the gateway appears stuck and no active deployment is progressing, updating a tag can sometimes trigger a fresh PUT operation and help recover the resource state:
Azure CLI:
az network application-gateway update \
--name <gateway-name> \
--resource-group <resource-group> \
--set tags.reset="reset-$(date +%s)"
Powershell:
$gw = Get-AzApplicationGateway -Name <gateway-name> -ResourceGroupName <resource-group>
Set-AzApplicationGateway -ApplicationGateway $gw
PowerShell note: Set-AzApplicationGateway -ApplicationGateway $gw pushes the full configuration back to Azure. Review pending changes before executing.
Reference:
- Troubleshoot Failed state issues on Application Gateway - Azure | Microsoft Learn
- Frequently asked questions about Application Gateway | Microsoft Learn
Kindly let us know if the above helps or you need further assistance on this issue.
Please do not forget to
and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.