Subject: | CATALYST_CONFIG_LOCAL_SUFFIX is ignored |
Today i wanted to run a script on my testing environment, loading the testing config file with CATALYST_CONFIG_LOCAL_SUFFIX=testing but it loaded the myapp_local file instead
when i used MYAPP_CONFIG_LOCAL_SUFFIX=testing instead it worked as expected.
his might have to do with passing name => 'MYAPP' to the constructor
my $home = __DIR__ . '/../../..';
my $jfdi = Config::JFDI->new(
name => "MYAPP",
path => $home,
);