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:
authorVishal Tak <vtak@gitlab.com>2022-04-26 13:47:02 +0300
committerVishal Tak <vtak@gitlab.com>2022-04-26 13:51:17 +0300
commitde280760e40d45a05c1c7ccd99d7465ca1fba26e (patch)
tree892df94029e69ff9b8bb03c6e0aca62fe9d2cc2d /internal/config
parentb136cc6f86655324ad2216a8a94ad519817b3641 (diff)
Remove deprecated daemon flagsremove-daemon-flags
Changelog: removed
Diffstat (limited to 'internal/config')
-rw-r--r--internal/config/flags.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/internal/config/flags.go b/internal/config/flags.go
index 75d01957..1ab78053 100644
--- a/internal/config/flags.go
+++ b/internal/config/flags.go
@@ -42,10 +42,6 @@ var (
metricsAddress = flag.String("metrics-address", "", "The address to listen on for metrics requests")
sentryDSN = flag.String("sentry-dsn", "", "The address for sending sentry crash reporting to")
sentryEnvironment = flag.String("sentry-environment", "", "The environment for sentry crash reporting")
- _ = flag.Uint("daemon-uid", 0, "DEPRECATED and ignored, will be removed in 15.0")
- _ = flag.Uint("daemon-gid", 0, "DEPRECATED and ignored, will be removed in 15.0")
- _ = flag.Bool("daemon-enable-jail", false, "DEPRECATED and ignored, will be removed in 15.0")
- _ = flag.Bool("daemon-inplace-chroot", false, "DEPRECATED and ignored, will be removed in 15.0") // TODO: https://gitlab.com/gitlab-org/gitlab-pages/-/issues/599
propagateCorrelationID = flag.Bool("propagate-correlation-id", false, "Reuse existing Correlation-ID from the incoming request header `X-Request-ID` if present")
serverShutdownTimeout = flag.Duration("server-shutdown-timeout", 30*time.Second, "GitLab Pages server shutdown timeout (default: 30s)")
logFormat = flag.String("log-format", "json", "The log output format: 'text' or 'json'")