fix(cache): cache test triggered by non memory cache (#33220)
Change SlowCacheThreshold to 30 milliseconds so it doesn't trigger on non memory cache Closes: https://github.com/go-gitea/gitea/issues/33190 Closes: https://github.com/go-gitea/gitea/issues/32657
This commit is contained in:
parent
5c150ce9b0
commit
8c6d7076b7
2 changed files with 9 additions and 3 deletions
3
modules/cache/cache_test.go
vendored
3
modules/cache/cache_test.go
vendored
|
@ -43,7 +43,8 @@ func TestTest(t *testing.T) {
|
|||
elapsed, err := Test()
|
||||
assert.NoError(t, err)
|
||||
// mem cache should take from 300ns up to 1ms on modern hardware ...
|
||||
assert.Less(t, elapsed, time.Millisecond)
|
||||
assert.Positive(t, elapsed)
|
||||
assert.Less(t, elapsed, SlowCacheThreshold)
|
||||
}
|
||||
|
||||
func TestGetCache(t *testing.T) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue