Commit 905dfd9b authored by Dan Williams's avatar Dan Williams

Fix another instance of golang #12262

Reliably reproducible on two up-to-date Fedora 23 machines using go 1.5.3, both one Core i7-4770R and a Core i7-4790. https://github.com/golang/go/issues/12262
parent 9d776d99
...@@ -309,7 +309,8 @@ func TestOIDCAuthentication(t *testing.T) { ...@@ -309,7 +309,8 @@ func TestOIDCAuthentication(t *testing.T) {
t.Fatalf("Cannot load cert/key pair: %v", err) t.Fatalf("Cannot load cert/key pair: %v", err)
} }
srv.StartTLS() srv.StartTLS()
defer srv.Close() // TODO: Uncomment when fix #19254
// defer srv.Close()
op.pcfg = oidc.ProviderConfig{ op.pcfg = oidc.ProviderConfig{
Issuer: srv.URL, Issuer: srv.URL,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment