This is an automated email from the ASF dual-hosted git repository. avijayan pushed a commit to branch HDDS-3698-upgrade in repository https://gitbox.apache.org/repos/asf/hadoop-ozone.git
commit a2e45ade574c2dd64bffde2bbcc869400cca5666 Author: Elek, Márton <[email protected]> AuthorDate: Thu Aug 27 13:32:52 2020 +0200 HDDS-4153. Increase default timeout in kubernetes tests (#1357) --- hadoop-ozone/dist/src/main/k8s/examples/testlib.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hadoop-ozone/dist/src/main/k8s/examples/testlib.sh b/hadoop-ozone/dist/src/main/k8s/examples/testlib.sh index 5dff226..2442cb9 100644 --- a/hadoop-ozone/dist/src/main/k8s/examples/testlib.sh +++ b/hadoop-ozone/dist/src/main/k8s/examples/testlib.sh @@ -17,14 +17,14 @@ retry() { n=0 - until [ $n -ge 30 ] + until [ $n -ge 100 ] do "$@" && break n=$[$n+1] echo "$n '$@' is failed..." sleep ${RETRY_SLEEP:-3} done - if [ $n -eq 30 ]; then + if [ $n -eq 100 ]; then return 255 fi } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
