From d8c7099cc96c9005a7f40542a4bdc308a69c8906 Mon Sep 17 00:00:00 2001
From: Git'Fellow <carlos@reendex.com>
Date: Mon, 9 May 2022 18:44:46 +0200
Subject: Increase retry delay on 'Wait for S3' CI job

1 second means 10 seconds before failure (1x10). Increasing to 10x10 before failure.
---
 .github/workflows/s3-primary.yml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

(limited to '.github/workflows/s3-primary.yml')

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
-- 
cgit v1.2.3