Skip to content

Commit

Permalink
Runlock
Browse files Browse the repository at this point in the history
  • Loading branch information
phbnf committed Aug 23, 2024
1 parent 6157187 commit d0e4643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion personalities/sctfe/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ type cachedIssuerStorage struct {
func (c *cachedIssuerStorage) Exists(ctx context.Context, key []byte) (bool, error) {
c.RLock()
_, ok := c.m[string(key)]
c.RLock()
c.RUnlock()
if ok {
klog.V(2).Infof("Exists: found %q in local key cache", key)
return true, nil
Expand Down

0 comments on commit d0e4643

Please sign in to comment.