From 0dc857830deda664190ae51ee64ed88aa0b98284 Mon Sep 17 00:00:00 2001 From: Jonas L Date: Mon, 10 Jun 2024 18:33:41 +0200 Subject: [PATCH] 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. --- tests/integration/targets/primary_ip/tasks/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/integration/targets/primary_ip/tasks/test.yml b/tests/integration/targets/primary_ip/tasks/test.yml index 84fd6a3..63c4106 100644 --- a/tests/integration/targets/primary_ip/tasks/test.yml +++ b/tests/integration/targets/primary_ip/tasks/test.yml @@ -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