check-mirroring: Use zwrite -n to not send PINGs.

(imported from commit e345f1b86c7f8850ac4eb4ae092cc83717e2cbe8)
This commit is contained in:
Tim Abbott 2012-12-10 10:21:49 -05:00
parent bb80b86e25
commit d451cf3dc0

View file

@ -174,9 +174,9 @@ logger.info("Starting sending messages!")
zsig = "Timothy Good Abbott" zsig = "Timothy Good Abbott"
for key, (stream, test) in zhkeys.items(): for key, (stream, test) in zhkeys.items():
if stream == "message": if stream == "message":
zwrite_args = ["zwrite", "-s", zsig, mit_user] zwrite_args = ["zwrite", "-n", "-s", zsig, mit_user]
else: else:
zwrite_args = ["zwrite", "-s", zsig, "-c", stream, "-i", "test"] zwrite_args = ["zwrite", "-n", "-s", zsig, "-c", stream, "-i", "test"]
send_zephyr(zwrite_args, str(key)) send_zephyr(zwrite_args, str(key))
logger.info("Sent Zephyr messages!") logger.info("Sent Zephyr messages!")