Skip to content

Commit

Permalink
LANTERN-595-Fix-go-lintr
Browse files Browse the repository at this point in the history
  • Loading branch information
archita-ekkirala committed Aug 21, 2024
1 parent 5cfcf64 commit 2b1f76b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func GetAndSendVersionsResponse(ctx context.Context, args *map[string]interface{
time.Sleep(time.Duration(500 * time.Millisecond))
req, err := http.NewRequest("GET", versionsURL, nil)
if err != nil {
log.Errorf("unable to create new GET request from URL: " + versionsURL)
log.Errorf("unable to create new GET request from URL: %s", versionsURL)
} else {
req.Header.Set("User-Agent", qa.UserAgent)
trace := &httptrace.ClientTrace{}
Expand Down

1 comment on commit 2b1f76b

@bcalvert3
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Acknowledged

Please sign in to comment.