From d9d1b4370ce149b1809c0d26f15014db3fc1df89 Mon Sep 17 00:00:00 2001 From: Rob Quist Date: Thu, 21 Dec 2023 18:14:00 +0100 Subject: [PATCH] Remove error log as its no longer an error since snap --- storage/pipeline/input.go | 1 - 1 file changed, 1 deletion(-) diff --git a/storage/pipeline/input.go b/storage/pipeline/input.go index 6fdae03d9..b595f533d 100644 --- a/storage/pipeline/input.go +++ b/storage/pipeline/input.go @@ -600,7 +600,6 @@ func (m *Sealing) updateInput(ctx context.Context, sp abi.RegisteredSealProof) e log.Debugw("updateInput matching done", "matches", len(matches), "toAssign", len(toAssign), "assigned", assigned, "openSectors", len(m.openSectors), "pieces", len(m.pendingPieces)) if len(toAssign) > 0 { - log.Errorf("we are trying to create a new sector with open sectors %v", m.openSectors) if err := m.tryGetDealSector(ctx, sp, getExpirationCached); err != nil { log.Errorw("Failed to create a new sector for deals", "error", err) }