mirror of https://github.com/Icinga/icinga2.git
Add missing OnConfigLoaded calls in Ido{My,Pg}sqlConnection
fixes #11951
This commit is contained in:
parent
c99fb68c2d
commit
d415ff7373
|
@ -44,6 +44,8 @@ IdoMysqlConnection::IdoMysqlConnection(void)
|
|||
|
||||
void IdoMysqlConnection::OnConfigLoaded(void)
|
||||
{
|
||||
ObjectImpl<IdoMysqlConnection>::OnConfigLoaded();
|
||||
|
||||
m_QueryQueue.SetName("IdoMysqlConnection, " + GetName());
|
||||
}
|
||||
|
||||
|
|
|
@ -48,6 +48,8 @@ IdoPgsqlConnection::IdoPgsqlConnection(void)
|
|||
|
||||
void IdoPgsqlConnection::OnConfigLoaded(void)
|
||||
{
|
||||
ObjectImpl<IdoPgsqlConnection>::OnConfigLoaded();
|
||||
|
||||
m_QueryQueue.SetName("IdoPgsqlConnection, " + GetName());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue