We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e197d30 commit 8bdfb3dCopy full SHA for 8bdfb3d
internal/agent/client/client.go
@@ -30,7 +30,7 @@ type Client struct {
30
// Returns a new client
31
func NewClient(baseURL string, checksumService *services.Checksum) *Client {
32
return &Client{
33
- httpClient: newHttpClient(baseURL),
+ httpClient: newHTTPClient(baseURL),
34
checksumService: checksumService,
35
}
36
internal/agent/client/helpers.go
@@ -11,7 +11,7 @@ import (
11
)
12
13
// Returns a new http client (resty)
14
-func newHttpClient(baseURL string) *resty.Client {
+func newHTTPClient(baseURL string) *resty.Client {
15
// Retriable errors
16
repetitionIntervals := [3]int{1, 3, 5}
17
currentRepetitionInterval := -1
0 commit comments