Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Build error
  • Loading branch information
Kotasudhakarreddy committed Feb 4, 2021
commit f2ad0dc531ce981bf5ea1e7be339a048a17ddc0f
Original file line number Diff line number Diff line change
Expand Up @@ -4145,10 +4145,11 @@ def _make_onedeploy_request(params):

# For debugging purposes only, you can change the async deployment into a sync deployment by polling the API status
# For that, set poll_async_deployment_for_debugging=True
poll_async_deployment_for_debugging = False
poll_async_deployment_for_debugging = True

# check the status of async deployment
if response.status_code == 202:
response_body = None
if poll_async_deployment_for_debugging:
logger.info('Polloing the status of async deployment')
response_body = _check_zip_deployment_status(params.cmd, params.resource_group_name, params.webapp_name,
Expand Down