From bbecb486e951062c36a208d5feabcb0aee160037 Mon Sep 17 00:00:00 2001 From: nanitebased Date: Mon, 14 Feb 2022 10:49:46 +0100 Subject: [PATCH 1/2] Fix redirection of command line output --- Executor/Tasks/Run/cli_execute.py | 2 +- Executor/Tasks/Run/tap_execute.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Executor/Tasks/Run/cli_execute.py b/Executor/Tasks/Run/cli_execute.py index e1a8548..ceb0a46 100644 --- a/Executor/Tasks/Run/cli_execute.py +++ b/Executor/Tasks/Run/cli_execute.py @@ -11,5 +11,5 @@ def __init__(self, logMethod, parent, params): } def Run(self): - cli = Cli(self.params['Parameters'], self.params['CWD'], self.logMethod) + cli = Cli(self.params['Parameters'], self.params['CWD'], self.Log) cli.Execute() diff --git a/Executor/Tasks/Run/tap_execute.py b/Executor/Tasks/Run/tap_execute.py index d590bd0..7a682d9 100644 --- a/Executor/Tasks/Run/tap_execute.py +++ b/Executor/Tasks/Run/tap_execute.py @@ -26,7 +26,7 @@ def Run(self): externals = self.params['Externals'] gatherResults = self.params['GatherResults'] - tap = Tap(tapPlan, externals, self.logMethod) + tap = Tap(tapPlan, externals, self.Log) tap.Execute() if gatherResults: From 0c0b5b2a5c91698e6c71b2aa0bc23505dcda0aa5 Mon Sep 17 00:00:00 2001 From: nanitebased Date: Mon, 14 Feb 2022 11:00:34 +0100 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3d7122..da1bfa1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +**14/02/2022** [Version 3.2.1] + + - Fix redirection of command line output (Cli/TapExecute) + **03/02/2022** [Version 3.2.0] - Implement Verdict handling