Skip to content

Commit

Permalink
ignore unused return values
Browse files Browse the repository at this point in the history
  • Loading branch information
ddowker committed May 22, 2024
1 parent d062230 commit fef046b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion broker/fragment/store_gcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func (s *gcsBackend) Provider() string {
func (s *gcsBackend) SignGet(ep *url.URL, fragment pb.Fragment, d time.Duration) (string, error) {
log.WithFields(log.Fields{"ep": ep.String(), "fragment": fragment.ContentPath()}).Info("*** DJD1 SignGet() called")

cfg, client, opts, err := s.gcsClient(ep)
cfg, _, _, err := s.gcsClient(ep)
if err != nil {
return "", err
}
Expand Down

0 comments on commit fef046b

Please sign in to comment.