diff options
author | Joe Orton <jorton@apache.org> | 2020-02-17 12:59:28 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2020-02-17 12:59:28 +0100 |
commit | 2fe910c05b3d587327ad624b4ce8cae774f1c945 (patch) | |
tree | 690b986591fc33f2744b9e09aebdee8c9ada11b2 /test | |
parent | Define ap_method_mask_t (typedef for apr_uint64_t) and use for method (diff) | |
download | apache2-2fe910c05b3d587327ad624b4ce8cae774f1c945.tar.xz apache2-2fe910c05b3d587327ad624b4ce8cae774f1c945.zip |
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
Diffstat (limited to 'test')
-rwxr-xr-x | test/travis_before_linux.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/travis_before_linux.sh b/test/travis_before_linux.sh index 0a8e056d46..39c8f1c760 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 |