Skip to content

Commit

Permalink
test: add workaround to prevent a timeout during the server deletion (#…
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
jooola committed Jun 10, 2024
1 parent 6cff1a3 commit 0dc8578
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/integration/targets/primary_ip/tasks/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0dc8578

Please sign in to comment.