From 10233ee88104a1fbfa060f571ccc6aeee371a3dc Mon Sep 17 00:00:00 2001 From: Mathias Date: Sat, 6 Jun 2026 10:22:37 +0200 Subject: [PATCH] fix(scheduler): include ChannelUnavailable in sumStats + pass-complete log --- cmd/tapir/scheduler.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmd/tapir/scheduler.go b/cmd/tapir/scheduler.go index 2525166..4ff0471 100644 --- a/cmd/tapir/scheduler.go +++ b/cmd/tapir/scheduler.go @@ -86,7 +86,7 @@ func runDiscoveryPass( "candidates", total.Candidates, "summarized", total.Summarized, "skipped_seen", total.SkippedSeen, "skipped_no_text", total.SkippedNoText, "skipped_manual", total.SkippedManual, "skipped_rate_limited", total.SkippedRateLimited, - "errors", total.Errors) + "channel_unavailable", total.ChannelUnavailable, "errors", total.Errors) return total } @@ -130,6 +130,7 @@ func sumStats(a, b runner.Stats) runner.Stats { SkippedNoText: a.SkippedNoText + b.SkippedNoText, SkippedManual: a.SkippedManual + b.SkippedManual, SkippedRateLimited: a.SkippedRateLimited + b.SkippedRateLimited, + ChannelUnavailable: a.ChannelUnavailable + b.ChannelUnavailable, Errors: a.Errors + b.Errors, } }