From e6de1b0e8cf476d30441109c71deee8f0b4a5d09 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Tue, 22 Nov 2022 17:22:33 +0200 Subject: [PATCH] Increase the timeout in test. Downloading all files can take more than 5 seconds, if there are even small network glitches or similar. --- test_runner/regress/test_remote_storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_runner/regress/test_remote_storage.py b/test_runner/regress/test_remote_storage.py index aab0a3cc15..c508080359 100644 --- a/test_runner/regress/test_remote_storage.py +++ b/test_runner/regress/test_remote_storage.py @@ -285,7 +285,7 @@ def test_remote_storage_upload_queue_retries( assert tenant["has_in_progress_downloads"] is False assert tenant["state"] == {"Active": {"background_jobs_running": True}} - wait_until(5, 1, tenant_active) + wait_until(30, 1, tenant_active) log.info("restarting postgres to validate") pg = env.postgres.create_start("main", tenant_id=tenant_id)