From db381f431b7adb8f6c745a1b0cbcf7ec245baa4a Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 2 Jan 2013 10:36:47 -0500 Subject: [PATCH] zmirror: Attempt to receive zephyrs as we send them. Sometimes the very first message we send isn't received by python-zephyr; this could be because of our growing a 17-message queue of zephyrs to service, so let's not do that. (imported from commit 281bf1807442b6335b05c803b1a47e0a162bef4e) --- bots/check-mirroring | 1 + 1 file changed, 1 insertion(+) diff --git a/bots/check-mirroring b/bots/check-mirroring index ee61a21..3485836 100755 --- a/bots/check-mirroring +++ b/bots/check-mirroring @@ -230,6 +230,7 @@ for key, (stream, test) in zhkeys.items(): else: logging.warning("Replaced key %s with %s due to Zephyr server failure." % (key, new_key)) + receive_zephyrs() receive_zephyrs() logger.info("Sent Zephyr messages!")