fix: adjust exponential backoff timing in scrape_jobs_with_retry
Some checks failed
CI/CD Pipeline / test (push) Failing after 42s
CI/CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
2025-11-01 18:31:35 +01:00
parent f48f5dc036
commit 92b6efb550
2 changed files with 3 additions and 3 deletions

View File

@@ -174,7 +174,7 @@ def scrape_jobs_with_retry(max_retries=3):
return True
except Exception as e:
if attempt < max_retries - 1:
time.sleep(2 ** attempt * 60) # Exponential backoff
time.sleep(2 ** attempt * 10) # Exponential backoff
return False