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:
Jonas L 2024-06-10 18:33:41 +02:00 committed by GitHub
parent 6cff1a3a99
commit 0dc857830d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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