From 4ccd5f3669041051da18528d23f986f9eb93ed86 Mon Sep 17 00:00:00 2001
From: Alexander Lutay <alutay@sipwise.com>
Date: Fri, 1 Jul 2022 12:09:57 +0200
Subject: [PATCH] TT#182706 Print proper info message on billing DB connect

The function is connect_billdbh(), but rate-o-mat is
printing copy&paste message from connect_dupdbh().

Change-Id: I4fc0e0ab48b78335c455cb3924f31cd7dc212495
---
 rate-o-mat.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rate-o-mat.pl b/rate-o-mat.pl
index 3753b4f..f34a539 100755
--- a/rate-o-mat.pl
+++ b/rate-o-mat.pl
@@ -288,7 +288,7 @@ sub connect_billdbh {
 	FATAL "Error connecting to db: ".$DBI::errstr
 		unless defined($billdbh);
 	$billdbh->do('SET time_zone = ?',undef,$connection_timezone) or FATAL 'error setting connection timezone' if $connection_timezone;
-	INFO "Successfully connected to duplication db...";
+	INFO "Successfully connected to billing db...";
 
 }