Linter fixes

This commit is contained in:
Vyr Cossont 2024-11-30 20:18:56 -08:00
commit 2cb7a8bf2a
4 changed files with 28 additions and 8 deletions

View file

@ -238,12 +238,12 @@ func (r *realSender) sendToSubscription(
return nil
}
// gtsHttpClientRoundTripper helps wrap a GtS HTTP client back into a regular HTTP client,
// gtsHTTPClientRoundTripper helps wrap a GtS HTTP client back into a regular HTTP client,
// so that webpush-go can use our IP filters, bad hosts list, and retries.
type gtsHttpClientRoundTripper struct {
type gtsHTTPClientRoundTripper struct {
httpClient *httpclient.Client
}
func (r *gtsHttpClientRoundTripper) RoundTrip(request *http.Request) (*http.Response, error) {
func (r *gtsHTTPClientRoundTripper) RoundTrip(request *http.Request) (*http.Response, error) {
return r.httpClient.Do(request)
}

View file

@ -42,7 +42,7 @@ type Sender interface {
func NewSender(httpClient *httpclient.Client, state *state.State) Sender {
return NewRealSender(
&http.Client{
Transport: &gtsHttpClientRoundTripper{
Transport: &gtsHTTPClientRoundTripper{
httpClient: httpClient,
},
// Other fields are already set on the http.Client inside the httpclient.Client.