Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGit'Fellow <carlos@reendex.com>2022-05-09 19:44:46 +0300
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2022-05-13 00:09:25 +0300
commit34abed9f7c233e0dd9d450dff0b23a281727a60b (patch)
tree000568abf1d3419c8fbf2c77846f2f8905f90a90 /.github
parent8aa4b1377f217f84667a2cdd01afcae99197a574 (diff)
Increase retry delay on 'Wait for S3' CI jobbackport/32318/stable24
1 second means 10 seconds before failure (1x10). Increasing to 10x10 before failure.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/s3-primary.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/s3-primary.yml b/.github/workflows/s3-primary.yml
index 809e26a8e38..9fbc3f8d668 100644
--- a/.github/workflows/s3-primary.yml
+++ b/.github/workflows/s3-primary.yml
@@ -6,7 +6,6 @@ on:
- master
- stable*
-
jobs:
s3-primary-tests-minio:
runs-on: ubuntu-latest
@@ -52,9 +51,9 @@ jobs:
- name: Wait for S3
run: |
sleep 10
- curl -f -m 1 --retry-connrefused --retry 10 --retry-delay 1 http://localhost:9000/minio/health/ready
+ curl -f -m 1 --retry-connrefused --retry 10 --retry-delay 10 http://localhost:9000/minio/health/ready
sleep 10
- curl -f -m 1 --retry-connrefused --retry 10 --retry-delay 1 http://localhost:9000/minio/health/ready
+ curl -f -m 1 --retry-connrefused --retry 10 --retry-delay 10 http://localhost:9000/minio/health/ready
- name: PHPUnit
working-directory: tests