You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2020/02/17 11:59:28 UTC

svn commit: r1874128 - /httpd/httpd/trunk/test/travis_before_linux.sh

Author: jorton
Date: Mon Feb 17 11:59:28 2020
New Revision: 1874128

URL: http://svn.apache.org/viewvc?rev=1874128&view=rev
Log:
Back off a little when svn export is timing out.

Modified:
    httpd/httpd/trunk/test/travis_before_linux.sh

Modified: httpd/httpd/trunk/test/travis_before_linux.sh
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/test/travis_before_linux.sh?rev=1874128&r1=1874127&r2=1874128&view=diff
==============================================================================
--- httpd/httpd/trunk/test/travis_before_linux.sh (original)
+++ httpd/httpd/trunk/test/travis_before_linux.sh Mon Feb 17 11:59:28 2020
@@ -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