mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Remove potential integer overflow conversion uint64 -> int64
This commit is contained in:
parent
5d81849603
commit
c95fa11a2f
4 changed files with 14 additions and 12 deletions
6
utils/cache/file_haunter_test.go
vendored
6
utils/cache/file_haunter_test.go
vendored
|
@ -20,7 +20,7 @@ var _ = Describe("FileHaunter", func() {
|
|||
var cacheDir string
|
||||
var err error
|
||||
var maxItems int
|
||||
var maxSize int64
|
||||
var maxSize uint64
|
||||
|
||||
JustBeforeEach(func() {
|
||||
tempDir, _ := os.MkdirTemp("", "spread_fs")
|
||||
|
@ -29,7 +29,9 @@ var _ = Describe("FileHaunter", func() {
|
|||
Expect(err).ToNot(HaveOccurred())
|
||||
DeferCleanup(func() { _ = os.RemoveAll(tempDir) })
|
||||
|
||||
fsCache, err = fscache.NewCacheWithHaunter(fs, fscache.NewLRUHaunterStrategy(cache.NewFileHaunter("", maxItems, maxSize, 300*time.Millisecond)))
|
||||
fsCache, err = fscache.NewCacheWithHaunter(fs, fscache.NewLRUHaunterStrategy(
|
||||
cache.NewFileHaunter("", maxItems, maxSize, 300*time.Millisecond),
|
||||
))
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
DeferCleanup(fsCache.Clean)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue