From ac505d91a94dce8aa95e8052c61d5cdca0146991 Mon Sep 17 00:00:00 2001 From: Vishal Anand <101251245+vishale6x@users.noreply.github.com> Date: Fri, 1 Aug 2025 16:55:53 +0530 Subject: [PATCH] Query isolation. --- e6data_python_connector/e6data_grpc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/e6data_python_connector/e6data_grpc.py b/e6data_python_connector/e6data_grpc.py index 93cff30..6cecfbf 100644 --- a/e6data_python_connector/e6data_grpc.py +++ b/e6data_python_connector/e6data_grpc.py @@ -1254,7 +1254,6 @@ def execute(self, operation, parameters=None, **kwargs): # Check for new strategy in prepare response if hasattr(prepare_statement_response, 'new_strategy') and prepare_statement_response.new_strategy: - print(f"@@@@@@ New strategy: {prepare_statement_response.new_strategy}") new_strategy = prepare_statement_response.new_strategy.lower() if new_strategy != _get_active_strategy(): _set_pending_strategy(new_strategy)