mirror of https://github.com/zulip/zulip.git
zephyr_mirror: Update maximum length of stream names when syncing.
(imported from commit 6ab7f5ae47c9dfe9edf411e73ac9e5ab22d375a7)
This commit is contained in:
parent
4b86d2a03b
commit
2bc4e14a72
|
@ -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"))
|
||||
|
|
Loading…
Reference in New Issue