From e9cf6ea6c9846e637584b0af4fedfc8dc9e94ba3 Mon Sep 17 00:00:00 2001 From: "Z. Cliffe Schreuders" Date: Thu, 6 Dec 2018 13:59:21 +0000 Subject: [PATCH] reduce the retry count for oVirt --- secgen.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/secgen.rb b/secgen.rb index 96a189676..f52637e72 100644 --- a/secgen.rb +++ b/secgen.rb @@ -112,7 +112,7 @@ def build_vms(scenario, project_dir, options) end # if deploying to ovirt, when things fail to build, set the retry_count - retry_count = OVirtFunctions::provider_ovirt?(options) ? 10 : 0 + retry_count = OVirtFunctions::provider_ovirt?(options) ? 2 : 0 successful_creation = false while retry_count and !successful_creation