From 8f75d557958373bc0d066d64cc27dfc108a3059e Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Sun, 10 Nov 2013 17:55:31 -0500 Subject: [PATCH] zephyr_mirror: Update maximum length of stream names when syncing. (imported from commit 6ab7f5ae47c9dfe9edf411e73ac9e5ab22d375a7) --- bots/zephyr_mirror_backend.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bots/zephyr_mirror_backend.py b/bots/zephyr_mirror_backend.py index 76fa3c6..09a2a05 100755 --- a/bots/zephyr_mirror_backend.py +++ b/bots/zephyr_mirror_backend.py @@ -807,8 +807,8 @@ def add_zulip_subscriptions(verbose): elif cls.lower() == "mail" and instance.lower() == "inbox": # We forward mail zephyrs, so no need to log a warning. continue - elif len(cls) > 30: - skipped.add((cls, instance, recipient, "Class longer than 30 characters")) + elif len(cls) > 60: + skipped.add((cls, instance, recipient, "Class longer than 60 characters")) continue elif instance != "*": skipped.add((cls, instance, recipient, "Unsupported non-* instance"))