From 5ceab3b7cd2b2ef7364132ac2b7d28c2d9433ce2 Mon Sep 17 00:00:00 2001 From: mcrakhman Date: Fri, 17 Jan 2025 11:40:48 +0100 Subject: [PATCH] Remove close send error --- commonspace/spacestorage/migration/executor.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/commonspace/spacestorage/migration/executor.go b/commonspace/spacestorage/migration/executor.go index d3ebe983..2886b266 100644 --- a/commonspace/spacestorage/migration/executor.go +++ b/commonspace/spacestorage/migration/executor.go @@ -4,7 +4,6 @@ import ( "context" "github.com/cheggaaa/mb/v3" - "go.uber.org/zap" "github.com/anyproto/any-sync/app/logger" ) @@ -55,7 +54,6 @@ func (mp *migratePool) sendLoop() { for { f, err := mp.batch.WaitOne(mp.ctx) if err != nil { - log.Debug("close send loop", zap.Error(err)) return } f()