Skip to content

Commit

Permalink
ACA-1515 Updating retries count to be 20 from 40 in the Delete resour…
Browse files Browse the repository at this point in the history
…ce group task in order to shorten the time user waits before the task failes

Signed-off-by: hyaish <[email protected]>
  • Loading branch information
Yaish25491 committed Aug 14, 2024
1 parent 90df4ba commit ad0a0d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions changelogs/fragments/20240814-azure_manage_resurce_group.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bugfixes:
- Updating retries count to be 20 from 40 in the Delete resource group task in order to shorten the time the user waits before the task fails
2 changes: 1 addition & 1 deletion roles/azure_manage_resource_group/tasks/delete.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
name: "{{ azure_manage_resource_group_name }}"
state: absent
force_delete_nonempty: "{{ azure_manage_resource_group_force_delete_nonempty | default(omit) }}"
retries: 40
retries: 20
delay: 5
register: result
until: result.failed == false

0 comments on commit ad0a0d9

Please sign in to comment.