Parcourir la source

Increase retry delay on 'Wait for S3' CI job

1 second means 10 seconds before failure (1x10). Increasing to 10x10 before failure.
tags/v25.0.0beta1
Git'Fellow il y a 2 ans
Parent
révision
d8c7099cc9
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 2 ajouts et 3 suppressions
  1. 2
    3
      .github/workflows/s3-primary.yml

+ 2
- 3
.github/workflows/s3-primary.yml Voir le fichier

@@ -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

Chargement…
Annuler
Enregistrer