From efd13505e1edce529535c33251172215169a9d56 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) --- api/bots/check-mirroring | 1 + 1 file changed, 1 insertion(+) diff --git a/api/bots/check-mirroring b/api/bots/check-mirroring index ee61a2188c..3485836ccd 100755 --- a/api/bots/check-mirroring +++ b/api/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!")