Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Shushlin <vshushlin@gitlab.com>2020-10-19 10:09:36 +0300
committerVladimir Shushlin <vshushlin@gitlab.com>2020-10-19 10:09:36 +0300
commit9cf62c0fc1f31a6e175bb3e8b2321ca19584dee3 (patch)
tree9292efadd79fff678a74f2f2b6cb38648c24e981
parent509da90294ab30a71baa4d6c47bf99c8ac6151dd (diff)
parent3eaf69ddf1eb560575bf023e0e7efc41223fbf33 (diff)
Merge branch 'fix-metrics-missing-op' into 'master'
Metrics miss `op` configured See merge request gitlab-org/gitlab-pages!379
-rw-r--r--internal/vfs/zip/lru_cache.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/vfs/zip/lru_cache.go b/internal/vfs/zip/lru_cache.go
index fed5c360..36817e66 100644
--- a/internal/vfs/zip/lru_cache.go
+++ b/internal/vfs/zip/lru_cache.go
@@ -34,6 +34,7 @@ func newLruCache(op string, maxEntries uint32, duration time.Duration) *lruCache
})
return &lruCache{
+ op: op,
cache: ccache.New(configuration),
duration: duration,
}