You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ozone.apache.org by av...@apache.org on 2020/09/02 16:54:39 UTC

[hadoop-ozone] 20/33: HDDS-4153. Increase default timeout in kubernetes tests (#1357)

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 <el...@users.noreply.github.com>
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: ozone-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: ozone-commits-help@hadoop.apache.org