zephyr_mirror: Don't try subscribing to an empty stream list.

(imported from commit c8155459b768dd1fc192246c1f584abb30a7bc02)
This commit is contained in:
Tim Abbott 2012-11-14 11:26:16 -05:00
parent 1a5f0648c5
commit e182bfcb98

View file

@ -134,6 +134,7 @@ 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"), "*", "*"))
if len(streams_to_subscribe) > 0:
zephyr_bulk_subscribe(streams_to_subscribe) zephyr_bulk_subscribe(streams_to_subscribe)
def maybe_restart_mirroring_script(): def maybe_restart_mirroring_script():