Skip to content

Commit

Permalink
fix: spurious warn log (#210)
Browse files Browse the repository at this point in the history
Co-authored-by: Aarsh Shah <aarshkshah1992@gmail.com>
  • Loading branch information
dirkmc and aarshkshah1992 committed Sep 10, 2021
1 parent a9f08a3 commit 07afd15
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion requestmanager/requestmanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,9 @@ func (rm *RequestManager) ProcessResponses(p peer.ID, responses []gsmsg.GraphSyn
blks []blocks.Block) {
response := make(chan error, 1)
err := rm.sendSyncMessage(&processResponseMessage{p, responses, blks, response}, response, nil)
log.Warningf("ProcessResponses: %s", err)
if err != nil {
log.Warnf("ProcessResponses: %s", err)
}
}

type unpauseRequestMessage struct {
Expand Down

0 comments on commit 07afd15

Please sign in to comment.