Aleksander Jaworski
10/24/2023, 3:12 PMOmegaConfigLoader following the kedro docs. I have previously had a hacky parametrized by env vars TemplatedConfigLoader setup (but it worked), and now after successfully interpolating most of the config, I get a
omegaconf.errors.UnsupportedInterpolationType: Unsupported interpolation type oc.env
full_key: general.df_with_tags.filepath
object_type=dict
error. By placing some strategic breakpoint, I have deduced that the _resolvers field in BaseContainer seems to be missing the oc.env resolver later, but initially it is able to look it up as its in the list. Dont know how to proceed, any help is appreciated. Thank you in advance ๐Merel
10/24/2023, 3:15 PMoc.env in? By default itโs only supported for credentials, and if you want to us it in other config files youโll need to enable it explicitly: https://docs.kedro.org/en/stable/configuration/advanced_configuration.html#how-to-use-resolvers-in-the-omegaconfigloaderAleksander Jaworski
10/24/2023, 3:18 PMAleksander Jaworski
10/24/2023, 3:18 PM