From d3a2a9be248a0b63f02a34ae889e6ec6dc75e2b0 Mon Sep 17 00:00:00 2001 From: Michal Reznik Date: Fri, 10 Nov 2017 12:31:42 +0100 Subject: [PATCH] test_vault: increase WAIT_AFTER_ARCHIVE Fixes failing "ipa vault-retrieve" on replica due to a vault not yet replicated. Increase from 30 to 45 seems to be enough. https://pagure.io/freeipa/issue/7265 Reviewed-By: Rob Crittenden Reviewed-By: Christian Heimes --- ipatests/test_integration/test_vault.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipatests/test_integration/test_vault.py b/ipatests/test_integration/test_vault.py index aca608fa6..496ccb1bb 100644 --- a/ipatests/test_integration/test_vault.py +++ b/ipatests/test_integration/test_vault.py @@ -7,7 +7,7 @@ import time from ipatests.test_integration.base import IntegrationTest from ipatests.pytest_plugins.integration import tasks -WAIT_AFTER_ARCHIVE = 30 # give some time to replication +WAIT_AFTER_ARCHIVE = 45 # give some time to replication class TestInstallKRA(IntegrationTest):