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 e6243d4 commit e7b4fc2Copy full SHA for e7b4fc2
pkg/router/crl/crl.go
@@ -68,8 +68,10 @@ var (
68
// CABundleFilename is the fully qualified path to the currently in use CA bundle.
69
CABundleFilename = filepath.Join(mtlsLatestSymlink, caBundleBasename)
70
// crlsUpdated is true when all CRLs have been successfully updated, and false when there are missing CRLs.
71
+ // You must take crlsMutex before using crlsUpdated.
72
crlsUpdated = false
- crlsMutex = sync.Mutex{}
73
+ // crlsMutex protects crlsUpdated.
74
+ crlsMutex = sync.Mutex{}
75
)
76
77
// authorityKeyIdentifier is a certificate's authority key identifier.
0 commit comments