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 d47e082 commit 8cacc0aCopy full SHA for 8cacc0a
support/oidc-discovery-provider/cert_manager.go
@@ -64,7 +64,7 @@ func (m *DiskCertManager) TLSConfig() *tls.Config {
64
}
65
66
// getCertificate is called by the TLS stack when a new TLS connection is established.
67
-func (m *DiskCertManager) getCertificate(chInfo *tls.ClientHelloInfo) (*tls.Certificate, error) {
+func (m *DiskCertManager) getCertificate(_ *tls.ClientHelloInfo) (*tls.Certificate, error) {
68
m.certMtx.RLock()
69
defer m.certMtx.RUnlock()
70
cert := m.cert
support/oidc-discovery-provider/config_windows_test.go
@@ -3,7 +3,10 @@
3
4
package main
5
6
-import "time"
+import (
7
+ "net"
8
+ "time"
9
+)
10
11
var (
12
minimalServerAPIConfig = `
0 commit comments