diff --git a/pkg/appfs/server.go b/pkg/appfs/server.go index a8de5314a46..be4b4ad48a8 100644 --- a/pkg/appfs/server.go +++ b/pkg/appfs/server.go @@ -113,7 +113,7 @@ var initCacheOnce sync.Once // using the swift backend as file server. func NewSwiftFileServer(conn *swift.Connection, appsType consts.AppType) FileServer { initCacheOnce.Do(func() { - c, err := lru.New[string, cacheEntry](128) + c, err := lru.New[string, cacheEntry](1024) if err != nil { panic(err) }