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:
Diffstat (limited to 'internal/serving/disk/zip/serving.go')
-rw-r--r--internal/serving/disk/zip/serving.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/serving/disk/zip/serving.go b/internal/serving/disk/zip/serving.go
index 9b3a7aa7..53e66f13 100644
--- a/internal/serving/disk/zip/serving.go
+++ b/internal/serving/disk/zip/serving.go
@@ -14,7 +14,7 @@ var instance serving.Serving
// from a zip archives opened from a URL, most likely stored in object storage
func Instance() serving.Serving {
if instance == nil {
- instance = disk.New(vfs.Instrumented(zip.New(config.ZipVFSConfig)))
+ instance = disk.New(vfs.Instrumented(zip.New(config.DefaultConfig.GetZip())))
}
return instance