]> granicus.if.org Git - icinga2/commitdiff
Increase query queue size for testing
authorMichael Friedrich <michael.friedrich@netways.de>
Fri, 12 Feb 2016 13:14:48 +0000 (14:14 +0100)
committerMichael Friedrich <michael.friedrich@netways.de>
Fri, 12 Feb 2016 13:15:24 +0000 (14:15 +0100)
refs #10963

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

index 56ed3a0f0e0cf9baa45beb318f355d31ab6e7ff2..840d40003b37f5c6a7b00ec56aad5ddf2cd32245 100644 (file)
@@ -39,7 +39,7 @@ REGISTER_TYPE(IdoMysqlConnection);
 REGISTER_STATSFUNCTION(IdoMysqlConnection, &IdoMysqlConnection::StatsFunc);
 
 IdoMysqlConnection::IdoMysqlConnection(void)
-       : m_QueryQueue(500000)
+       : m_QueryQueue(1000000)
 { }
 
 void IdoMysqlConnection::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata)
index 59806896db4c2683ae2bc9748f80d03a303adb5e..3d5d1a610c04ec717423b4b4dccac6fcfff08cb6 100644 (file)
@@ -41,7 +41,7 @@ REGISTER_TYPE(IdoPgsqlConnection);
 REGISTER_STATSFUNCTION(IdoPgsqlConnection, &IdoPgsqlConnection::StatsFunc);
 
 IdoPgsqlConnection::IdoPgsqlConnection(void)
-       : m_QueryQueue(500000)
+       : m_QueryQueue(1000000)
 { }
 
 void IdoPgsqlConnection::StatsFunc(const Dictionary::Ptr& status, const Array::Ptr& perfdata)