mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 14:07:36 +03:00
Cache Warmer now waits for Cache to be available
This commit is contained in:
parent
145a5708ca
commit
58d6b0a84f
7 changed files with 42 additions and 20 deletions
2
core/cache/file_caches_test.go
vendored
2
core/cache/file_caches_test.go
vendored
|
@ -16,7 +16,7 @@ import (
|
|||
// Call NewFileCache and wait for it to be ready
|
||||
func callNewFileCache(name, cacheSize, cacheFolder string, maxItems int, getReader ReadFunc) *fileCache {
|
||||
fc := NewFileCache(name, cacheSize, cacheFolder, maxItems, getReader)
|
||||
Eventually(func() bool { return fc.Ready() }).Should(BeTrue())
|
||||
Eventually(func() bool { return fc.Ready(context.TODO()) }).Should(BeTrue())
|
||||
return fc
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue