Hi Everyone! Issue Description: Getting `Interpola...
# questions
a
Hi Everyone! Issue Description: Getting
InterpolationResolutionError
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
Copy code
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 correctly
a
Hi Ayushi, Could you also add the following to `CONFIG_LOADER_ARGS`:
Copy code
CONFIG_LOADER_ARGS = {
  "base_env": "base",
  "default_run_env": "local",
 "custom_resolvers" : {
"Our_resolver": reference to resolver
}
👍 2
I suspect that the missing
base_env
and
default_run_env
is causing the problem