https://kedro.org/ logo
Title
n

noklam

05/30/2022, 3:36 PM
Hi @bgereke @Evolute There is an open issue about this problem here. https://github.com/kedro-org/kedro/issues/1527 It's not ideal, but you will need to created a custom templated config loader. You can find the correct usage here. https://github.com/noklam/kedro_gallery/blob/master/template_config_loader_demo/src/template_config_loader_demo/settings.py
python
class MyTemplatedConfigLoader(TemplatedConfigLoader):
    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self._config_mapping.update(self.runtime_params)