From: Joe Orton Date: Mon, 17 Feb 2020 11:59:28 +0000 (+0000) Subject: Back off a little when svn export is timing out. X-Git-Tag: 2.5.0-alpha2-ci-test-only~1647 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2fe910c05b3d587327ad624b4ce8cae774f1c945;p=thirdparty%2Fapache%2Fhttpd.git Back off a little when svn export is timing out. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1874128 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/travis_before_linux.sh b/test/travis_before_linux.sh index 0a8e056d46c..39c8f1c760e 100755 --- a/test/travis_before_linux.sh +++ b/test/travis_before_linux.sh @@ -25,7 +25,7 @@ function run_svn_export() { if [ $i -eq $max_tries ]; then exit 1 else - sleep 180 + sleep $((100 * i)) fi fi done