Skip to content

Commit

Permalink
Update net/blockwise/blockwise.go
Browse files Browse the repository at this point in the history
  • Loading branch information
jkralik committed May 2, 2024
1 parent dd0660c commit 921ef07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/blockwise/blockwise.go
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ func newWriteRequestResponse[C Client](cc C, request *pool.Message) *responsewri
req.SetToken(request.Token())
req.ResetOptionsTo(request.Options())
req.SetBody(request.Body())
if (request.Type() == message.Confirmable || request.Type() == message.NonConfirmable) {
if request.Type() == message.Confirmable || request.Type() == message.NonConfirmable {

Check failure on line 273 in net/blockwise/blockwise.go

View workflow job for this annotation

GitHub Actions / lint

File is not `gci`-ed with --skip-generated -s standard -s default (gci)
req.SetType(request.Type())
}
return responsewriter.New(req, cc, request.Options()...)
Expand Down

0 comments on commit 921ef07

Please sign in to comment.