Fixed onos-wait-for-start to time-out with error.
Fixed beast-5 cell.
Change-Id: I0cda404628a1f2d42814032abd6e3ee5fec125cb
diff --git a/tools/test/bin/onos-wait-for-start b/tools/test/bin/onos-wait-for-start
index 93500f5..030e5cc 100755
--- a/tools/test/bin/onos-wait-for-start
+++ b/tools/test/bin/onos-wait-for-start
@@ -10,7 +10,7 @@
ssh -t $remote "
# Wait until we reach the run-level 100
- for i in \$(seq 1 30); do
+ for i in \$(seq 1 20); do
$ONOS_INSTALL_DIR/bin/onos bundle:list 2>/dev/null | \
grep -q 'START LEVEL 100' && break || sleep 2
done
@@ -20,4 +20,6 @@
grep -q \" ApplicationManager .* Started\" \
$ONOS_INSTALL_DIR/log/karaf.log && break || sleep 1
done
+
+ grep -q \" ApplicationManager .* Started\" $ONOS_INSTALL_DIR/log/karaf.log
"