Skip to content

Commit

Permalink
Tweak error message
Browse files Browse the repository at this point in the history
  • Loading branch information
mostynb committed Jun 23, 2024
1 parent 6cc2a13 commit fea980b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/grpc_asset.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func (s *grpcServer) fetchItem(ctx context.Context, uri string, headers http.Hea

req, err := http.NewRequest(http.MethodGet, uri, nil)
if err != nil {
s.errorLogger.Printf("failed to new Request: %s err: %v", uri, err)
s.errorLogger.Printf("failed to create http.Request: %s err: %v", uri, err)
return false, "", int64(-1)
}

Expand Down

0 comments on commit fea980b

Please sign in to comment.