We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0503ed commit 97b7e92Copy full SHA for 97b7e92
executor/executor.go
@@ -34,6 +34,7 @@ import (
34
"context"
35
"errors"
36
"io"
37
+ "net/http"
38
"net/url"
39
"sync"
40
"syscall"
@@ -93,7 +94,14 @@ func Run(cfg config.Config) {
93
94
http = httpcli.New(
95
httpcli.Endpoint(apiURL.String()),
96
httpcli.Codec(codecs.ByMediaType[codecs.MediaTypeProtobuf]),
- httpcli.Do(httpcli.With(httpcli.Timeout(httpTimeout))),
97
+ httpcli.Do(httpcli.With(
98
+ httpcli.Timeout(httpTimeout),
99
+ httpcli.Transport(func(transport *http.Transport) {
100
+ transport.Proxy = func(request *http.Request) (*url.URL, error) {
101
+ return nil, nil
102
+ }
103
+ }),
104
+ )),
105
)
106
107
// Fill in the Framework and Executor IDs as call parameters
0 commit comments