File tree 1 file changed +6
-3
lines changed
plugin/pkg/auth/authenticator/token/oidc 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -218,7 +218,8 @@ func TestOIDCDiscoveryNoKeyEndpoint(t *testing.T) {
218
218
t .Fatalf ("Cannot load cert/key pair: %v" , err )
219
219
}
220
220
srv .StartTLS ()
221
- defer srv .Close ()
221
+ // TODO: Uncomment when fix #19254
222
+ // defer srv.Close()
222
223
223
224
op .pcfg = oidc.ProviderConfig {
224
225
Issuer : srv .URL ,
@@ -274,7 +275,8 @@ func TestOIDCDiscoverySecureConnection(t *testing.T) {
274
275
t .Fatalf ("Cannot load cert/key pair: %v" , err )
275
276
}
276
277
tlsSrv .StartTLS ()
277
- defer tlsSrv .Close ()
278
+ // TODO: Uncomment when fix #19254
279
+ // defer tlsSrv.Close()
278
280
279
281
op .pcfg = oidc.ProviderConfig {
280
282
Issuer : tlsSrv .URL ,
@@ -309,7 +311,8 @@ func TestOIDCAuthentication(t *testing.T) {
309
311
t .Fatalf ("Cannot load cert/key pair: %v" , err )
310
312
}
311
313
srv .StartTLS ()
312
- defer srv .Close ()
314
+ // TODO: Uncomment when fix #19254
315
+ // defer srv.Close()
313
316
314
317
op .pcfg = oidc.ProviderConfig {
315
318
Issuer : srv .URL ,
You can’t perform that action at this time.
0 commit comments