Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
Propose low limit of EventMaxQueueSize to 10000 (#6013)
Browse files Browse the repository at this point in the history
Old value was 100 000. Proposition to set 10 000
ref: #6011
  • Loading branch information
lpinsivy authored and loiclau committed Jan 31, 2018
1 parent 4883084 commit c1809e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions www/class/centreonConfigCentreonBroker.php
Original file line number Diff line number Diff line change
Expand Up @@ -1279,8 +1279,8 @@ private function rpnOperation($result, $item)
*/
private function checkEventMaxQueueSizeValue($value)
{
if (!isset($value) || $value == "" || $value < 100000) {
$value = 100000;
if (!isset($value) || $value == "" || $value < 10000) {
$value = 10000;
}
return $value;
}
Expand Down

0 comments on commit c1809e8

Please sign in to comment.