Skip to content

Commit

Permalink
fix(forwarder): adjust error message formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jta committed Jun 10, 2024
1 parent 0029730 commit ba4dd3b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/handler/forwarder/s3http/internal/decoders/decoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
)

var (
ErrUnsupportedContentEncoding = errors.New("content encoding not supported: %w")
ErrUnsupportedContentType = errors.New("content type not supported: %w")
ErrUnsupportedContentEncoding = errors.New("content encoding not supported")
ErrUnsupportedContentType = errors.New("content type not supported")
)

var decoders = map[string]DecoderFactory{
Expand Down

0 comments on commit ba4dd3b

Please sign in to comment.