Skip to content

Commit

Permalink
try harder to set up s3_server fixture
Browse files Browse the repository at this point in the history
it only happens once per session, so we may as well take the time
  • Loading branch information
h-vetinari committed May 21, 2024
1 parent 1f07404 commit 28aa566
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pyarrow/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def wrapper(*args, **kwargs):

@pytest.fixture(scope='session')
def s3_server(s3_connection, tmpdir_factory):
@retry(attempts=5, delay=0.1, backoff=2)
@retry(attempts=5, delay=1, backoff=2)
def minio_server_health_check(address):
resp = urllib.request.urlopen(f"http://{address}/minio/health/cluster")
assert resp.getcode() == 200
Expand Down

0 comments on commit 28aa566

Please sign in to comment.