From e4a629a6315de9695d87781e65aa25c607344060 Mon Sep 17 00:00:00 2001 From: nicor88 <6278547+nicor88@users.noreply.github.com> Date: Fri, 18 Oct 2024 09:22:06 +0200 Subject: [PATCH] increase iceberg retries --- dbt-athena/tests/functional/adapter/test_retries_iceberg.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbt-athena/tests/functional/adapter/test_retries_iceberg.py b/dbt-athena/tests/functional/adapter/test_retries_iceberg.py index 9bfb7821..f4711d9d 100644 --- a/dbt-athena/tests/functional/adapter/test_retries_iceberg.py +++ b/dbt-athena/tests/functional/adapter/test_retries_iceberg.py @@ -101,8 +101,8 @@ class TestIcebergRetriesEnabled: @pytest.fixture(scope="class") def dbt_profile_target(self): profile = copy.deepcopy(base_dbt_profile) - # we set the iceberg retries to the same number of parallelism to make sure that the retries are working - profile["num_iceberg_retries"] = PARALLELISM * 2 + # we set iceberg retries to a high number to ensure that the test will pass + profile["num_iceberg_retries"] = PARALLELISM * 5 return profile @pytest.fixture(scope="class")