mirror of https://github.com/zulip/zulip.git
queue: Increase allowed expected_time_to_clear_backlog for embed_links.
It's okay for this queue to be a bit slow, and the default limits are kind of too low for it.
This commit is contained in:
parent
cd9b194d88
commit
e2dcdc2758
|
@ -42,11 +42,13 @@ MAX_SECONDS_TO_CLEAR: DefaultDict[str, int] = defaultdict(
|
||||||
lambda: 30,
|
lambda: 30,
|
||||||
digest_emails=1200,
|
digest_emails=1200,
|
||||||
missedmessage_mobile_notifications=120,
|
missedmessage_mobile_notifications=120,
|
||||||
|
embed_links=60,
|
||||||
)
|
)
|
||||||
CRITICAL_SECONDS_TO_CLEAR: DefaultDict[str, int] = defaultdict(
|
CRITICAL_SECONDS_TO_CLEAR: DefaultDict[str, int] = defaultdict(
|
||||||
lambda: 60,
|
lambda: 60,
|
||||||
missedmessage_mobile_notifications=180,
|
missedmessage_mobile_notifications=180,
|
||||||
digest_emails=1800,
|
digest_emails=1800,
|
||||||
|
embed_links=90,
|
||||||
)
|
)
|
||||||
|
|
||||||
def analyze_queue_stats(queue_name: str, stats: Dict[str, Any],
|
def analyze_queue_stats(queue_name: str, stats: Dict[str, Any],
|
||||||
|
|
Loading…
Reference in New Issue