]> granicus.if.org Git - icinga2/commitdiff
Add missing OnConfigLoaded calls in Ido{My,Pg}sqlConnection
authorGunnar Beutner <gunnar.beutner@netways.de>
Thu, 16 Jun 2016 12:21:29 +0000 (14:21 +0200)
committerGunnar Beutner <gunnar.beutner@netways.de>
Thu, 16 Jun 2016 12:22:20 +0000 (14:22 +0200)
fixes #11951

lib/db_ido_mysql/idomysqlconnection.cpp
lib/db_ido_pgsql/idopgsqlconnection.cpp

index a1b3550dad73d8ff7e27d0f8fdf02804a046ee34..4e11f6f7a3860342e6db46f6b1efa87c16788d72 100644 (file)
@@ -44,6 +44,8 @@ IdoMysqlConnection::IdoMysqlConnection(void)
 
 void IdoMysqlConnection::OnConfigLoaded(void)
 {
+       ObjectImpl<IdoMysqlConnection>::OnConfigLoaded();
+
        m_QueryQueue.SetName("IdoMysqlConnection, " + GetName());
 }
 
index f5f22d7e067d438f9813c75bd5bbd62e60219a72..e9e745d313892cc6ea2d53c90d1192452f8361b5 100644 (file)
@@ -48,6 +48,8 @@ IdoPgsqlConnection::IdoPgsqlConnection(void)
 
 void IdoPgsqlConnection::OnConfigLoaded(void)
 {
+       ObjectImpl<IdoPgsqlConnection>::OnConfigLoaded();
+
        m_QueryQueue.SetName("IdoPgsqlConnection, " + GetName());
 }