From d3e4584d73b2cd9a7f8182b68517fcdbabc3ae60 Mon Sep 17 00:00:00 2001 From: James Gilbert Date: Tue, 10 Feb 2026 20:48:28 -0500 Subject: [PATCH] reverted control flow --- cmd/tap/outbox.go | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/cmd/tap/outbox.go b/cmd/tap/outbox.go index 802f8f4a..08653b5e 100644 --- a/cmd/tap/outbox.go +++ b/cmd/tap/outbox.go @@ -262,13 +262,8 @@ func (w *DIDWorker) processPendingEvts() { w.mu.Lock() if w.blockedOnLive { - if len(w.inFlightSentAt) == 0 { - // nothing in flight, proceed to processing - w.blockedOnLive = false - } else { - w.mu.Unlock() - return - } + w.mu.Unlock() + return } if len(w.pendingEvts) == 0 { -- 2.51.2