[orca] Event Manager: Lower thresholds for flood and deluge again
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca] Event Manager: Lower thresholds for flood and deluge again
- Date: Sun, 13 Jun 2021 17:02:53 +0000 (UTC)
commit 5555a59d5d15b1edd27220958fc89b816ee7220a
Author: Joanmarie Diggs <jdiggs igalia com>
Date: Sun Jun 13 19:01:00 2021 +0200
Event Manager: Lower thresholds for flood and deluge again
* Flood is now 50 (was 75)
* Deluge is now 100 (was 150)
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 f58009652..4b9ed7d2d 100644
--- a/src/orca/event_manager.py
+++ b/src/orca/event_manager.py
@@ -742,7 +742,7 @@ class EventManager:
def _inDeluge(self):
size = self._eventQueue.qsize()
- if size > 150:
+ if size > 100:
msg = 'EVENT MANAGER: DELUGE! Queue size is %i' % size
debug.println(debug.LEVEL_INFO, msg, True)
return True
@@ -796,7 +796,7 @@ class EventManager:
def _inFlood(self):
size = self._eventQueue.qsize()
- if size > 75:
+ if size > 50:
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]