mirror of
https://github.com/zulip/zulip.git
synced 2025-11-13 02:17:19 +00:00
zephyr_mirror: Don't try subscribing to an empty stream list.
(imported from commit c8155459b768dd1fc192246c1f584abb30a7bc02)
This commit is contained in:
@@ -134,7 +134,8 @@ def update_subscriptions_from_humbug():
|
|||||||
if stream in current_zephyr_subs:
|
if stream in current_zephyr_subs:
|
||||||
continue
|
continue
|
||||||
streams_to_subscribe.append((stream.encode("utf-8"), "*", "*"))
|
streams_to_subscribe.append((stream.encode("utf-8"), "*", "*"))
|
||||||
zephyr_bulk_subscribe(streams_to_subscribe)
|
if len(streams_to_subscribe) > 0:
|
||||||
|
zephyr_bulk_subscribe(streams_to_subscribe)
|
||||||
|
|
||||||
def maybe_restart_mirroring_script():
|
def maybe_restart_mirroring_script():
|
||||||
if os.stat(os.path.join(options.root_path, "stamps", "restart_stamp")).st_mtime > start_time or \
|
if os.stat(os.path.join(options.root_path, "stamps", "restart_stamp")).st_mtime > start_time or \
|
||||||
|
|||||||
Reference in New Issue
Block a user