From f41c7257a683f345a26b244ab4c2ff4b29d2056a Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Fri, 12 Jul 2024 11:39:15 -0400 Subject: [PATCH] remove print statements --- dbt/adapters/snowflake/connections.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/dbt/adapters/snowflake/connections.py b/dbt/adapters/snowflake/connections.py index e98e6ac42..c6d1f9567 100644 --- a/dbt/adapters/snowflake/connections.py +++ b/dbt/adapters/snowflake/connections.py @@ -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