Reduced timeout for faster failures

This commit is contained in:
chrislu
2025-08-26 16:26:07 -07:00
parent 7650f87054
commit 9f9b6710b2
+1 -1
View File
@@ -79,7 +79,7 @@ type JWK struct {
func NewOIDCProvider(name string) *OIDCProvider {
return &OIDCProvider{
name: name,
httpClient: &http.Client{Timeout: 30 * time.Second},
httpClient: &http.Client{Timeout: 5 * time.Second}, // Reduced timeout for faster failures
}
}