Skip to content

Commit

Permalink
feat: turn healthCheckHttpClient timeout from 500ms to 3s
Browse files Browse the repository at this point in the history
Signed-off-by: Max batleforc <[email protected]>
  • Loading branch information
batleforc committed Sep 16, 2024
1 parent 0136d4c commit 8e30852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controllers/workspace/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func setupHttpClients(k8s client.Client, logger logr.Logger) {
}
healthCheckHttpClient = &http.Client{
Transport: healthCheckTransport,
Timeout: 500 * time.Millisecond,
Timeout: 3 * 500 * time.Millisecond,
}
InjectCertificates(k8s, logger)
}
Expand Down

0 comments on commit 8e30852

Please sign in to comment.