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 authored May 2, 2024
1 parent 25b0c8e commit 246b157
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 246b157

Please sign in to comment.