Ayushi
10/27/2025, 6:35 AMInterpolationResolutionError kedro run after adding custom resolvers to CONFIG_LOADER_ARGS in settings.py
Kedro run works fine if I comment out the custom resolver in settings.py but if I try to run kedro via this resolver i get an error saying globals key not found,
content of settings.py
CONFIG_LOADER_ARGS = {
"custom_resolvers" : {
"Our_resolver": reference to resolver
}
Is it necessary to explicitly mention config patterns?so that it is able to find globals or configs correctlyAnkita Katiyar
10/27/2025, 9:54 AMCONFIG_LOADER_ARGS = {
"base_env": "base",
"default_run_env": "local",
"custom_resolvers" : {
"Our_resolver": reference to resolver
}Ankita Katiyar
10/27/2025, 9:54 AMbase_env and default_run_env is causing the problem