Skip to content

Commit

Permalink
Readd increment to avoid infinite recursion.
Browse files Browse the repository at this point in the history
  • Loading branch information
VersusFacit committed Dec 16, 2024
1 parent 4b378b9 commit 8f447c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/adapters/sql/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def _execute_query_with_retry(
bindings=bindings,
retryable_exceptions=retryable_exceptions,
retry_limit=retry_limit,
attempt=1,
attempt=attempt+1,
)

connection = self.get_thread_connection()
Expand Down

0 comments on commit 8f447c3

Please sign in to comment.