Skip to content

Commit

Permalink
not synced not logging (#13210)
Browse files Browse the repository at this point in the history
[#closes 13154](#13154)

Co-authored-by: shota.silagadze <[email protected]>
  • Loading branch information
shotasilagadze and shotasilagadzetaal authored Dec 23, 2024
1 parent 5900d21 commit 83faf86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cl/phase1/network/gossip_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ func (g *GossipManager) Start(ctx context.Context) {
return
case data := <-ch:
l := log.Ctx{}
if err := g.onRecv(ctx, data, l); err != nil && !errors.Is(err, services.ErrIgnore) {
if err := g.onRecv(ctx, data, l); err != nil && !errors.Is(err, services.ErrIgnore) && !errors.Is(err, synced_data.ErrNotSynced) {
log.Debug("[Beacon Gossip] Recoverable Error", "err", err)
}
}
Expand Down

0 comments on commit 83faf86

Please sign in to comment.