From d3806b03ad1d16ea18b7222f0107aa30b83055d7 Mon Sep 17 00:00:00 2001 From: Alexandra Bara Date: Thu, 31 Jul 2025 09:39:07 -0500 Subject: [PATCH] fixed connection issue for global arg: preserve_connection --- nodescraper/interfaces/connectionmanager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nodescraper/interfaces/connectionmanager.py b/nodescraper/interfaces/connectionmanager.py index ab4e875f..988a83f2 100644 --- a/nodescraper/interfaces/connectionmanager.py +++ b/nodescraper/interfaces/connectionmanager.py @@ -140,3 +140,4 @@ def connect(self) -> TaskResult: def disconnect(self): """disconnect connection (Optional)""" self.connection = None + self.result.status = ExecutionStatus.UNSET