Skip to content

Commit

Permalink
fix(lint): fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahhoward committed Apr 20, 2020
1 parent 4645efe commit 7f06479
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion responsemanager/responsemanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,10 @@ func (rm *ResponseManager) processUpdate(key responseKey, update gsmsg.GraphSync
return
}
if result.Unpause {
rm.unpauseRequest(key.p, key.requestID)
err := rm.unpauseRequest(key.p, key.requestID)
if err != nil {
log.Warnf("error unpausing request: %s", err.Error())
}
}
}

Expand Down

0 comments on commit 7f06479

Please sign in to comment.