From f752a1ddeaf1c7d1fec02486c42d9a63a2abd764 Mon Sep 17 00:00:00 2001 From: Ray Milkey Date: Mon, 14 May 2018 16:14:00 -0700 Subject: [PATCH] bump up time out for a cell node to 3 minutes Change-Id: I531d799ee136d4ac3bed30f0a3b0714f04587c71 --- tools/test/bin/onos-verify-cell | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test/bin/onos-verify-cell b/tools/test/bin/onos-verify-cell index 55c2b32a35..72a23df5b6 100755 --- a/tools/test/bin/onos-verify-cell +++ b/tools/test/bin/onos-verify-cell @@ -9,7 +9,7 @@ let err=0 for node in $OCT $OCN $(env | sort | egrep "^OC[0-9]+" | cut -d= -f2); do - for i in 1 2 3 4 5 6; do + for i in {1..18}; do printf "%s: " $node; ssh -n -q -o StrictHostKeyChecking=no -o PasswordAuthentication=no -o ConnectTimeout=10 $ONOS_USER@$node hostname if [ $? -eq 0 ]; then let err=0