From b0b9330466b819285c3f59000e17a598cf1006c2 Mon Sep 17 00:00:00 2001 From: Feng Yu Date: Wed, 22 Feb 2023 16:33:40 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=F0=9F=92=A1=20Extend=20sleep=20tim?= =?UTF-8?q?e=20for=20retry?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index f133588..1ccc462 100755 --- a/build.sh +++ b/build.sh @@ -37,7 +37,7 @@ retry() { # max retry 5 times try=5 # sleep 3s every retry - sleep_time=3 + sleep_time=30 for i in $(seq ${try}); do echo "executing with retry: $@" >&2 if eval "$@"; then