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/config/config.go')
-rw-r--r--internal/config/config.go9
1 files changed, 1 insertions, 8 deletions
diff --git a/internal/config/config.go b/internal/config/config.go
index f1d70f2c..66f1a2b9 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -6,14 +6,7 @@ import (
// Default configuration that can be accessed by different packages
var Default = &Config{
- // TODO: remove duplication once all flags are defined in this package
- // https://gitlab.com/gitlab-org/gitlab-pages/-/issues/507
- Zip: &ZipServing{
- ExpirationInterval: time.Minute,
- CleanupInterval: time.Minute / 2,
- RefreshInterval: time.Minute / 2,
- OpenTimeout: time.Minute / 2,
- },
+ Zip: &ZipServing{},
}
type Config struct {