mirror of https://github.com/Icinga/icinga2.git
parent
0d4e92015c
commit
effb834d3f
|
@ -40,7 +40,7 @@ REGISTER_TYPE(IdoMysqlConnection);
|
|||
REGISTER_STATSFUNCTION(IdoMysqlConnectionStats, &IdoMysqlConnection::StatsFunc);
|
||||
|
||||
IdoMysqlConnection::IdoMysqlConnection(void)
|
||||
: m_Connected(false)
|
||||
: m_QueryQueue(500000), m_Connected(false)
|
||||
{ }
|
||||
|
||||
Value IdoMysqlConnection::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata)
|
||||
|
|
|
@ -42,7 +42,7 @@ REGISTER_TYPE(IdoPgsqlConnection);
|
|||
REGISTER_STATSFUNCTION(IdoPgsqlConnectionStats, &IdoPgsqlConnection::StatsFunc);
|
||||
|
||||
IdoPgsqlConnection::IdoPgsqlConnection(void)
|
||||
: m_Connection(NULL)
|
||||
: m_QueryQueue(500000), m_Connection(NULL)
|
||||
{ }
|
||||
|
||||
Value IdoPgsqlConnection::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata)
|
||||
|
|
Loading…
Reference in New Issue