Skip to content

Commit

Permalink
Python things.
Browse files Browse the repository at this point in the history
  • Loading branch information
VersusFacit committed Dec 16, 2024
1 parent 657b427 commit 49ddd1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbt/adapters/sql/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def _execute_query_with_retry(
)
time.sleep(1)

return self._execute_query_with_retry(
return _execute_query_with_retry(
cursor=cursor,
sql=sql,
bindings=bindings,
Expand Down Expand Up @@ -145,7 +145,7 @@ def _execute_query_with_retry(
pre = time.perf_counter()

cursor = connection.handle.cursor()
self._execute_query_with_retry(
_execute_query_with_retry(
cursor=cursor,
sql=sql,
bindings=bindings,
Expand Down

0 comments on commit 49ddd1f

Please sign in to comment.