Increase query queue size for testing

refs #10963
This commit is contained in:
Michael Friedrich 2016-02-12 14:14:48 +01:00 committed by Gunnar Beutner
parent fc90265332
commit f6378c9417
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ REGISTER_TYPE(IdoMysqlConnection);
REGISTER_STATSFUNCTION(IdoMysqlConnection, &IdoMysqlConnection::StatsFunc); REGISTER_STATSFUNCTION(IdoMysqlConnection, &IdoMysqlConnection::StatsFunc);
IdoMysqlConnection::IdoMysqlConnection(void) IdoMysqlConnection::IdoMysqlConnection(void)
: m_QueryQueue(500000) : m_QueryQueue(1000000)
{ } { }
void IdoMysqlConnection::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata) void IdoMysqlConnection::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata)

View File

@ -41,7 +41,7 @@ REGISTER_TYPE(IdoPgsqlConnection);
REGISTER_STATSFUNCTION(IdoPgsqlConnection, &IdoPgsqlConnection::StatsFunc); REGISTER_STATSFUNCTION(IdoPgsqlConnection, &IdoPgsqlConnection::StatsFunc);
IdoPgsqlConnection::IdoPgsqlConnection(void) IdoPgsqlConnection::IdoPgsqlConnection(void)
: m_QueryQueue(500000) : m_QueryQueue(1000000)
{ } { }
void IdoPgsqlConnection::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata) void IdoPgsqlConnection::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata)