From 06a8bdb8e684354cf1630edbc6eb690724ae7141 Mon Sep 17 00:00:00 2001 From: Kevin Kluge Date: Mon, 6 Dec 2010 21:20:58 -0800 Subject: [PATCH] apply a fix mike gave to a customer to keep the SSVM running and recovering --- console-proxy/scripts/run.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/console-proxy/scripts/run.sh b/console-proxy/scripts/run.sh index 4ea7608a8f5..f84dbd65422 100755 --- a/console-proxy/scripts/run.sh +++ b/console-proxy/scripts/run.sh @@ -8,7 +8,8 @@ do ./_run.sh "$@" ex=$? if [ $ex -eq 0 ] || [ $ex -eq 1 ] || [ $ex -eq 66 ] || [ $ex -gt 128 ]; then - exit $ex + # permanent errors + sleep 160 fi sleep 20 done