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 1fb74d9 commit 6c4c785Copy full SHA for 6c4c785
components/ws-manager/pkg/manager/probe.go
@@ -74,13 +74,13 @@ func (p *WorkspaceReadyProbe) Run(ctx context.Context) WorkspaceProbeResult {
74
Transport: &http.Transport{
75
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
76
DialContext: (&net.Dialer{
77
- Timeout: 30 * time.Second,
78
- KeepAlive: 30 * time.Second,
+ Timeout: 1 * time.Second,
+ KeepAlive: -1 * time.Second,
79
DualStack: false,
80
}).DialContext,
81
MaxIdleConns: 0,
82
MaxIdleConnsPerHost: 32,
83
- IdleConnTimeout: 30 * time.Second,
+ IdleConnTimeout: 10 * time.Second,
84
TLSHandshakeTimeout: 10 * time.Second,
85
ExpectContinueTimeout: 5 * time.Second,
86
DisableKeepAlives: true,
0 commit comments