mirror of
https://github.com/ansible-collections/hetzner.hcloud
synced 2024-11-10 06:34:13 +00:00
test: add workaround to prevent a timeout during the server deletion (#513)
When the following steps are executed, the server deletion fails with a timeout: - delete primary IP (attached to the server) - delete server - timeout after 5 minutes on server delete action Adding the 2 seconds pause will work around this timeout.
This commit is contained in:
parent
6cff1a3a99
commit
0dc857830d
1 changed files with 4 additions and 0 deletions
|
@ -179,3 +179,7 @@
|
|||
ansible.builtin.assert:
|
||||
that:
|
||||
- result is changed
|
||||
|
||||
- name: Workaround to prevent a timeout during the server deletion
|
||||
ansible.builtin.pause:
|
||||
seconds: 2
|
||||
|
|
Loading…
Reference in a new issue