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 d18d28f commit 6a9dbeeCopy full SHA for 6a9dbee
pkg/cache/lru.go
@@ -28,6 +28,7 @@ func (lru *LRU) Get(key string) string {
28
lru.cacheMutex.RLock()
29
n := lru.cache[key]
30
if n == nil {
31
+ lru.cacheMutex.RUnlock()
32
return ""
33
}
34
lru.cacheMutex.RUnlock()
0 commit comments