[orca] Event Manager: Lower thresholds for flood and deluge



commit 5c7097c2f5f02a4ad1ca48de90a817276855211c
Author: Joanmarie Diggs <jdiggs igalia com>
Date:   Sun Jun 13 15:31:04 2021 +0200

    Event Manager: Lower thresholds for flood and deluge
    
    * Flood is now 75 (was 100)
    * Deluge is now 150 (was 250)
    
    Making this change based on user feedback, and also so we can identify
    if this lowered level is too aggressive.

 src/orca/event_manager.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/orca/event_manager.py b/src/orca/event_manager.py
index 026a7af5a..2a29151a8 100644
--- a/src/orca/event_manager.py
+++ b/src/orca/event_manager.py
@@ -733,7 +733,7 @@ class EventManager:
 
     def _inDeluge(self):
         size = self._eventQueue.qsize()
-        if size > 250:
+        if size > 150:
             msg = 'EVENT MANAGER: DELUGE! Queue size is %i' % size
             debug.println(debug.LEVEL_INFO, msg, True)
             return True
@@ -753,7 +753,7 @@ class EventManager:
 
     def _inFlood(self):
         size = self._eventQueue.qsize()
-        if size > 100:
+        if size > 75:
             msg = 'EVENT MANAGER: FLOOD? Queue size is %i' % size
             debug.println(debug.LEVEL_INFO, msg, True)
             return True


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]