Increase distro-check boot timeout to 6m from 5m 68/72768/1
authorJamo Luhrsen <jluhrsen@redhat.com>
Thu, 7 Jun 2018 16:18:27 +0000 (09:18 -0700)
committerJamo Luhrsen <jluhrsen@redhat.com>
Thu, 7 Jun 2018 16:18:27 +0000 (09:18 -0700)
Change-Id: Icf44c5505057b85abf0fd591ff02a3c7a0784de4
Signed-off-by: Jamo Luhrsen <jluhrsen@redhat.com>
jjb/integration/distribution/distribution-check-bootup.sh

index be617ee034b32c326d9572170b0104cff52c12c2..1285ce62235902203a34573669e437fec57800d0 100644 (file)
@@ -83,7 +83,7 @@ function dump_log_and_exit {
     exit 1
 }
 
-echo "Waiting up to 5 minutes for controller to come up, checking every 5 seconds..."
+echo "Waiting up to 6 minutes for controller to come up, checking every 5 seconds..."
 COUNT="0"
 while true; do
     COUNT=$(( ${COUNT} + 5 ))
@@ -92,7 +92,7 @@ while true; do
     if grep --quiet 'org.opendaylight.infrautils.ready-impl.*System ready' "${WORKSPACE}/${BUNDLEFOLDER}/data/log/karaf.log"; then
         echo "Controller is UP"
         break
-    elif (( "${COUNT}" > "300" )); then
+    elif (( "${COUNT}" > "360" )); then
         echo "Timeout Controller DOWN"
         dump_log_and_exit
     fi