Alex Lourie has uploaded a new change for review. Change subject: packaging: Updated timeout while adding host in AIO plugin ......................................................................
packaging: Updated timeout while adding host in AIO plugin Change-Id: I7a93690a68c699a68f93fc561ee9c5135179fd7f Signed-off-by: Alex Lourie <[email protected]> --- M packaging/fedora/setup/plugins/all_in_one_100.py 1 file changed, 3 insertions(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/97/9297/1 diff --git a/packaging/fedora/setup/plugins/all_in_one_100.py b/packaging/fedora/setup/plugins/all_in_one_100.py index 676ce87..0c0868f 100644 --- a/packaging/fedora/setup/plugins/all_in_one_100.py +++ b/packaging/fedora/setup/plugins/all_in_one_100.py @@ -269,7 +269,9 @@ raise Exception(ERROR_CREATE_LOCAL_HOST) def waitForHostUp(): - utils.retry(isHostUp, tries=20, timeout=150, sleep=5) + # We will wait for 20 minutes for host to start. We sample the status each 5 seconds. + # If host is up or in failed state before the loop finished, the cycle will stop. + utils.retry(isHostUp, tries=240, timeout=1200, sleep=5) def isHostUp(): logging.debug("Waiting for host to become operational") -- To view, visit http://gerrit.ovirt.org/9297 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I7a93690a68c699a68f93fc561ee9c5135179fd7f Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Alex Lourie <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
