From 6f89d42312af1bdd23da993f151e700974383599 Mon Sep 17 00:00:00 2001 From: Fusl Date: Mon, 5 Dec 2022 19:56:47 +0000 Subject: [PATCH] disable channel overflow early return for now --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 0bad402..6e47ed2 100644 --- a/main.go +++ b/main.go @@ -77,8 +77,8 @@ func (that *ProjectBackfeedManager) PushItem(ctx context.Context, item *Backfeed return fmt.Errorf("backfeed channel closed") case that.C <- item: return nil - default: - return fmt.Errorf("backfeed channel full") + //default: + // return fmt.Errorf("backfeed channel full") } }