Cannot access runtime parameter when using kedro run --params
Kedro fails to resolve for runtime parameters passed via the CLI with the following error :
InterpolationResolutionError( omegaconf.errors.InterpolationResolutionError: Runtime parameter 'start_date' not found and no default value provided.
I am trying to run my pipeline with runtime parameters via the CLI as follows :
kedro run --params=start_date='2023-10-10',end_date='2023-10-11'
or
kedro run --params start_date='2023-10-10',end_date='2023-10-11'
I expected to be able to use these...