You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Let's assume, in production mode, I don't want to execute step_s1, so in the foo.ini in /etc/metwork.config.d/mfdata/plugins, I'm trying to disable the step_s1 by setting 'null', as mentionned as comment in config.ini file:
# Command (and args) to be executed
# Notes :
# - null means no command to execute
...
[step_s1]
_cmd_and_args=null
...
or
...
[step_s1]
_cmd_and_args=
...
But neither of the solutions works, and I get errors in the logs :
usage: plugin_wrapper [-h] [--cwd] [--empty] [--bash-cmds]
[--plugins-base-dir PLUGINS_BASE_DIR] [--ignore-cache]
PLUGIN_NAME_OR_PLUGIN_HOME COMMAND_AND_ARGS
plugin_wrapper: error: the following arguments are required: COMMAND_AND_ARGS
Is it a bug, or is there something that i didn't understand ?
The text was updated successfully, but these errors were encountered:
I'm trying to override
_cmd_and_args
in my<plugin_name>.ini
config. file in/etc/metwork.config.d/mfdata/plugins
directory.My plugin contains several steps, and for some reason I don't want to execute some steps in a specific configuration.
Let's assume my plugin's name is
foo
with 2 steps :s1
ands2
.The
config.ini
file contains :Let's assume, in production mode, I don't want to execute
step_s1
, so in thefoo.ini
in/etc/metwork.config.d/mfdata/plugins
, I'm trying to disable thestep_s1
by setting 'null', as mentionned as comment in config.ini file:or
But neither of the solutions works, and I get errors in the logs :
Is it a bug, or is there something that i didn't understand ?
The text was updated successfully, but these errors were encountered: