https://kedro.org/ logo
Title
l

lbonini

03/17/2022, 4:05 PM
I just print the conf paths and logs show it twice... I'll check the plugins and reinstall everything
d

datajoely

03/17/2022, 4:08 PM
Wait - How are you printing the conf paths?
that should be done for you
l

lbonini

03/17/2022, 4:09 PM
python
class ProjectHooks:
    
    @hook_impl
    def register_config_loader(
        self, conf_paths: Iterable[str], env: str, extra_params: Dict[str, Any],
    ) -> TemplatedConfigLoader:
        print(conf_paths)
d

datajoely

03/17/2022, 4:10 PM
ah gotcha
so a normal kedro run should log like this
I think that the config loader is loaded directly after that once
Okay I wasn't aware of this
we actually register the config loader a few times
it's used for a couple of things behind the scenes and each plug-in gets access to hit
so if you have viz and telemetry installed thats twice already
taught me something I didn't know today
l

lbonini

03/17/2022, 4:18 PM
look:
three times now 😅
d

datajoely

03/17/2022, 4:19 PM
yeah its valid
there is also very little performance penalty
as it doesn't do anything on its own
it needs to be called by other things
l

lbonini

03/17/2022, 4:20 PM
downgraded to 0.17.6
d

datajoely

03/17/2022, 4:20 PM
yeah it's not a bug
l

lbonini

03/17/2022, 4:20 PM
ok, just to be sure if it was normal