Hi, I am running the following command to deploy app service
I am using following az cli version
azure-cli 2.26.1 *
az webapp deploy --timeout 900000 --clean true $(deploy_trace_level) \ --resource-group $(azureResourceGroup) \ --name $(azureAppName) $(slot) \ --type zip --src-path \ $(System.DefaultWorkingDirectory)/$(app_archive) 2> /dev/null
I did add WEBSITE_ENABLE_SYNC_UPDATE_SITE = false
but after 4min51 seconds my command times out.
attaching the debug log
`
DEBUG: cli.azure.cli.core.util: Traceback (most recent call last):
File "/opt/az/lib/python3.6/site-packages/knack/cli.py", line 231, in invoke
cmd_result = self.invocation.execute(args)
File "/opt/az/lib/python3.6/site-packages/azure/cli/core/commands/init.py", line 657, in execute
raise ex
File "/opt/az/lib/python3.6/site-packages/azure/cli/core/commands/init.py", line 720, in _run_jobs_serially
results.append(self._run_job(expanded_arg, cmd_copy))
File "/opt/az/lib/python3.6/site-packages/azure/cli/core/commands/init.py", line 691, in _run_job
result = cmd_copy(params)
File "/opt/az/lib/python3.6/site-packages/azure/cli/core/commands/init.py", line 328, in call
return self.handler(*args, **kwargs)
File "/opt/az/lib/python3.6/site-packages/azure/cli/core/commands/command_operation.py", line 121, in handler
return op(**command_args)
File "/opt/az/lib/python3.6/site-packages/azure/cli/command_modules/appservice/custom.py", line 4037, in perform_onedeploy
return _perform_onedeploy_internal(params)
File "/opt/az/lib/python3.6/site-packages/azure/cli/command_modules/appservice/custom.py", line 4202, in _perform_onedeploy_internal
response = _make_onedeploy_request(params)
File "/opt/az/lib/python3.6/site-packages/azure/cli/command_modules/appservice/custom.py", line 4191, in _make_onedeploy_request
.format(response.status_code, response.text))
knack.util.CLIError: An error occured during deployment. Status Code: 500, Details: <html><head><title>500 - The request timed out.</title></head><body> <font color ="#aa0000"> <h2>500 - The request timed out.</h2></font> The web server failed to respond within the specified time.</body></html>
am I missing anything else?
`