From d9a8313b70f70817c0d6cbcfb43973f7ed29ce80 Mon Sep 17 00:00:00 2001 From: Mauro Torrez Date: Tue, 6 Oct 2020 09:35:43 -0300 Subject: [PATCH] fix: remove --error-on-interact option from cli command --- wildfly.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wildfly.py b/wildfly.py index e80dc09..1aa3a9b 100644 --- a/wildfly.py +++ b/wildfly.py @@ -128,7 +128,7 @@ def read_args(task_args, check_mode): password = task_args.get('password', '') local_auth = task_args.get('local_auth', True) cli_command = ( - '{} {} {} {} {} --connect --error-on-interact --output-json' + '{} {} {} {} {} --connect --output-json' '--no-color-output --no-output-paging' ).format( cli_path, @@ -145,7 +145,7 @@ def read_args(task_args, check_mode): '"cli_path", "cli_options", "conroller", "user", "password", ' 'and "local_auth" arguments instead') cli_command = ( - '{} --connect --error-on-interact --output-json' + '{} --connect --output-json' ' --no-color-output --no-output-paging' ).format(task_args.get('cli_cmd'))