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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Chandler <wchandler@gitlab.com>2023-01-19 20:18:34 +0300
committerWill Chandler <wchandler@gitlab.com>2023-01-19 20:18:34 +0300
commitbfe8a2277b157b6cd53c3dad5d2346ff61f2a978 (patch)
tree59741c5ec9e5287d50f40f0072366aabf29fefef
parent0c7a88e08dfcce0b0b2c8940aeca2613844df83a (diff)
ff: Default enable UserCommitFilesStructuredErrors
We've been running the `gitaly_user_commit_files_structured_errors` feature flag at 100% in production for over a week without issue. Let's enable it by default to allow self-managed instances to use it as well.
-rw-r--r--internal/metadata/featureflag/ff_user_commit_files_structured_errors.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/metadata/featureflag/ff_user_commit_files_structured_errors.go b/internal/metadata/featureflag/ff_user_commit_files_structured_errors.go
index 56b2bd224..9367708f1 100644
--- a/internal/metadata/featureflag/ff_user_commit_files_structured_errors.go
+++ b/internal/metadata/featureflag/ff_user_commit_files_structured_errors.go
@@ -6,5 +6,5 @@ var UserCommitFilesStructuredErrors = NewFeatureFlag(
"user_commit_files_structured_errors",
"v15.6.0",
"https://gitlab.com/gitlab-org/gitaly/-/issues/4472",
- false,
+ true,
)