diff --git a/.github/actions/update-progress/src/dashboard.py b/.github/actions/update-progress/src/dashboard.py index 18810b3..35295e6 100644 --- a/.github/actions/update-progress/src/dashboard.py +++ b/.github/actions/update-progress/src/dashboard.py @@ -60,11 +60,10 @@ def get_dataset_for_language(language_code): @stamina.retry( on=(httpx.HTTPStatusError, ArgillaAPIError), attempts=5, - wait_initial=10, - wait_exponential_multiplier=2, + wait_initial=15, ) def get_dataset_progress(language_dataset_name): - time.sleep(10) + time.sleep(2) dataset = client.datasets(language_dataset_name) return { "language_dataset_name": language_dataset_name,