diff --git a/helper/tt2-daemon b/helper/tt2-daemon index f8e1a3e5..f6ceccd2 100755 --- a/helper/tt2-daemon +++ b/helper/tt2-daemon @@ -64,7 +64,8 @@ sub handle_connections { next if(exists $loaded_ymls{$file}); $loaded_ymls{$file} = undef; print $client "Loading $file in memory:"; - $config = merge($config, LoadFile($file) || die $!); + my $hm = Hash::Merge->new('RIGHT_PRECEDENT'); + $config = $hm->merge($config, LoadFile($file) || die $!); print $client " OK \n"; }; };