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
in the luigi.cfg configuration file, I get the following warning :
UnconsumedParameterWarning: The configuration contains the parameter 'no_configure_logging' with value 'true' that is not consumed by the task 'core'.
The warning seems to be raised because the no_configure_logging is not a parameter of the core class, thus raising this warning when checking for unconsumed parameters here
But the no_configure_logging is well taken into account (see here ) !
Maybe consider adding it to the core class parameters or (if not needed in the core class instances) add some hack to ignore UnconsumedParameterWarning for this core parameter.
Thank you !
The text was updated successfully, but these errors were encountered:
When running luigi pipeline with
in the
luigi.cfg
configuration file, I get the following warning :UnconsumedParameterWarning: The configuration contains the parameter 'no_configure_logging' with value 'true' that is not consumed by the task 'core'.
The warning seems to be raised because the
no_configure_logging
is not a parameter of the core class, thus raising this warning when checking for unconsumed parameters hereBut the
no_configure_logging
is well taken into account (see here ) !Maybe consider adding it to the core class parameters or (if not needed in the core class instances) add some hack to ignore UnconsumedParameterWarning for this core parameter.
Thank you !
The text was updated successfully, but these errors were encountered: