~Question on passing params through CLI: I have a...
# questions
n
~Question on passing params through CLI: I have a node that accepts
params:my_param
in the
xx
pipeline & I run my pipeline as follows
run --pipeline xx --env prod --params "my_param:potato"
When running I get:~
Copy code
kedro.pipeline.modular_pipeline.ModularPipelineError: Failed to map datasets and/or parameters: params:my_param
~However, if I add a
after_catalog_created
hook and debug, within the hook there is a perfectly evaluated catalog with both the
env
parameters and
my_param
any pointers to what I should change appreciated!~ > Kedro version: 0.18.6
User error
๐Ÿ‘๐Ÿผ 2
n
Whatโ€™s actually happened here? Is there something we can improve from the error message?
n
I was missing a comma in the inputs list to a node.. think this one is on me ๐Ÿ˜‚
๐Ÿ˜‚ 1