From: Mike Taylor Date: Sat, 20 Jan 2007 09:53:20 +0000 (+0000) Subject: Peek at queued events at loop exit. X-Git-Tag: CPAN-v1.02~644 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=6e20e8c0e0f0f60744d34abd4d457e5e60ccaf3c;p=irspy-moved-to-github.git Peek at queued events at loop exit. Only make three belt-and-braces retries (was 10). --- diff --git a/lib/ZOOM/IRSpy.pm b/lib/ZOOM/IRSpy.pm index d2a1ad0..a1072b2 100644 --- a/lib/ZOOM/IRSpy.pm +++ b/lib/ZOOM/IRSpy.pm @@ -1,4 +1,4 @@ -# $Id: IRSpy.pm,v 1.56 2006-12-21 16:35:11 mike Exp $ +# $Id: IRSpy.pm,v 1.57 2007-01-20 09:53:20 mike Exp $ package ZOOM::IRSpy; @@ -505,6 +505,12 @@ sub check { $this->log("irspy", "$conn still has ZOOM-C level tasks queued: see below"); $finished = 0; } + my $ev = $conn->peek_event(); + if ($ev != ZOOM::Event::ZEND) { + my $evstr = ZOOM::event_str($ev); + $this->log("irspy", "$conn has event $ev ($evstr) waiting"); + $finished = 0; + } if (!$conn->option("rewrote_record")) { $this->log("irspy", "$conn did not rewrite its ZeeRex record"); $finished = 0; @@ -513,7 +519,7 @@ sub check { # This really shouldn't be necessary, but it's belt and braces if (!$finished) { - if (++$nruns < 10) { + if (++$nruns < 3) { $this->log("irspy", "back into main loop, ${nruns}th time"); goto ROUND_AND_ROUND_WE_GO; } else {