From bda5eef007993ccc1604b37d17694e250507760c Mon Sep 17 00:00:00 2001 From: mokaddem Date: Mon, 28 Jun 2021 08:46:07 +0200 Subject: [PATCH] fix: [localTool:commonConnector] Call localtool's finalise connection function --- src/Lib/default/local_tool_connectors/CommonConnectorTools.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Lib/default/local_tool_connectors/CommonConnectorTools.php b/src/Lib/default/local_tool_connectors/CommonConnectorTools.php index 9fee5c5..7e865c0 100644 --- a/src/Lib/default/local_tool_connectors/CommonConnectorTools.php +++ b/src/Lib/default/local_tool_connectors/CommonConnectorTools.php @@ -104,6 +104,7 @@ class CommonConnectorTools public function finaliseConnectionWrapper(array $params): bool { + $result = $this->finaliseConnection($params); $this->remoteToolConnectionStatus($params, self::STATE_CONNECTED); return false; }