increase mem warning limit to 30MB

This commit is contained in:
Martin Konecny 2012-09-12 15:44:26 -04:00
parent a418f5777c
commit 87fb9998dd
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ class RabbitMqPlugin extends Zend_Controller_Plugin_Abstract
}
}
if (memory_get_peak_usage() > 25*pow(2, 20)) {
if (memory_get_peak_usage() > 30*pow(2, 20)) {
Logging::debug("Peak memory usage: "
.(memory_get_peak_usage()/1000000)