From 09743de2e1a2c9abd38cba250675f4f7b0a9497b Mon Sep 17 00:00:00 2001 From: mattf Date: Thu, 12 Feb 2009 06:08:38 +0000 Subject: [PATCH] Fixed small bug in ADMIN_keepalive_ALL.pl multi-server configurations git-svn-id: svn://192.168.202.10@1053 3d104415-ff17-0410-8863-d5cf3c621b8a --- bin/ADMIN_keepalive_ALL.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/ADMIN_keepalive_ALL.pl b/bin/ADMIN_keepalive_ALL.pl index 41dc5ac1..88f66300 100644 --- a/bin/ADMIN_keepalive_ALL.pl +++ b/bin/ADMIN_keepalive_ALL.pl @@ -537,7 +537,7 @@ if ( ($active_asterisk_server =~ /Y/) && ($generate_vicidial_conf =~ /Y/) && ($r $sthA->finish(); ##### Get the server_ips and server_ids of all VICIDIAL servers on the network ##### - $stmtA = "SELECT server_ip,server_id FROM servers where server_ip!='$server_ip' and active_asterisk_server='1';"; + $stmtA = "SELECT server_ip,server_id FROM servers where server_ip!='$server_ip' and active_asterisk_server='Y';"; # print "$stmtA\n"; $sthA = $dbhA->prepare($stmtA) or die "preparing: ",$dbhA->errstr; $sthA->execute or die "executing: $stmtA ", $dbhA->errstr;