With OmegaConfLoader becoming the default on 0.19 ...
# questions
m
With OmegaConfLoader becoming the default on 0.19 will there still be an option to create your own conf loader class? Or do we feel we have all the functionality we need so that we don’t need to create our own conf loader classes anymore?
n
Are you using any custom config currently? Abstract config loader will still be there as it is the contract of config loader. You can always extend it if needed.
https://github.com/kedro-org/kedro/blob/main/kedro/config/abstract_config.py The interface is that it need to support the dictionary interface and a few arguments.
m
So the answer is that we can still continue to use a custom class. Thanks!
👍🏼 1