Increase DB retry backoff (#4346)

This commit is contained in:
Stanislav Novosad
2025-12-19 15:36:56 -07:00
committed by GitHub
parent dfcf4913e9
commit 5f37a0061e

View File

@@ -34,7 +34,7 @@ def read_retry(retries: int = 3) -> Callable:
LOG.error("SQLAlchemyError after all retries", exc_info=True, attempt=attempt)
raise
backoff_time = 0.1 * (2**attempt)
backoff_time = 0.2 * (2**attempt)
LOG.warning(
"SQLAlchemyError retrying",
attempt=attempt,