Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove print statements
Browse files Browse the repository at this point in the history
mikealfare committed Jul 12, 2024

Verified

This commit was signed with the committer’s verified signature.
mikealfare Mike Alfare
1 parent c228a84 commit f41c725
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions dbt/adapters/snowflake/connections.py
Original file line number Diff line number Diff line change
@@ -146,8 +146,6 @@ def __post_init__(self):

# only default `reuse_connections` to `True` if the user has not turned on `client_session_keep_alive`
# having both of these set to `True` could lead to hanging open connections, so it should be opt-in behavior
print(f"client_session_keep_alive = {self.client_session_keep_alive}")
print(f"reuse_connections = {self.reuse_connections}")
if self.client_session_keep_alive is False and self.reuse_connections is None:
print("Updating reuse_connections")
self.reuse_connections = True

0 comments on commit f41c725

Please sign in to comment.