Skip to content

Commit

Permalink
fix typo dial_timeout default to 200ms
Browse files Browse the repository at this point in the history
Default dial timeout should be 200ms
  • Loading branch information
vgalda authored and jacksontj committed Apr 30, 2020
1 parent ac56ba1 commit 36bc1b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/servergroup/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ var (
Scheme: "http",
RemoteReadPath: "api/v1/read",
HTTPConfig: HTTPClientConfig{
DialTimeout: time.Millisecond * 2000, // Default dial timeout of 200ms
DialTimeout: time.Millisecond * 200, // Default dial timeout of 200ms
},
}
)
Expand Down

0 comments on commit 36bc1b5

Please sign in to comment.