From 9a4bf0370311bbfd9bdd82c8db1199cccbecd8e0 Mon Sep 17 00:00:00 2001 From: Marco Capetta Date: Thu, 18 Jan 2018 12:17:10 +0100 Subject: [PATCH] TT#30652 Fix new path of use_dns_cache parameter Test script tries to configure the paramenter to off before the test starts. Since the parameter was moved in TT#27466, the parameter was actualy not changed. Change-Id: Ic5affbecc3304d8732c9edfc6243d951a8d7174b --- bin/config_debug.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/config_debug.pl b/bin/config_debug.pl index 8230f49a..51a321b7 100755 --- a/bin/config_debug.pl +++ b/bin/config_debug.pl @@ -102,7 +102,7 @@ else copy($file, $file.".orig") or die "Copy failed: $ERRNO" unless(-e $file.".orig"); $yaml = LoadFile($file); $yaml->{kamailio}{lb}{cfgt} = 'yes'; - $yaml->{kamailio}{lb}{use_dns_cache} = 'off'; + $yaml->{kamailio}{lb}{dns}{use_dns_cache} = 'off'; $yaml->{kamailio}{proxy}{children} = 1; $yaml->{kamailio}{proxy}{cfgt} = 'yes'; $yaml->{sems}{cfgt} = 'yes';