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:
authorStan Hu <stanhu@gmail.com>2021-07-01 16:54:25 +0300
committerStan Hu <stanhu@gmail.com>2021-07-21 02:07:04 +0300
commit2211513fecbb62b0e42f8dffffcffa8618e3a443 (patch)
treee4c68181164d69ac5d4aa9ea784d23c55f3ce2f8
parent499b72a41063d61dbb8a73ed7ffa7aa42f1584fd (diff)
Enable ResolveConflictsWithHooks feature flag by default
This fix was shipped in GitLab 14.1 behind a feature flag and should be enabled by default in GitLab 14.2 since it fixes the issue described in https://gitlab.com/gitlab-org/gitlab/-/issues/18917. Changelog: changed
-rw-r--r--internal/metadata/featureflag/feature_flags.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/internal/metadata/featureflag/feature_flags.go b/internal/metadata/featureflag/feature_flags.go
index f8fe3dc0c..fa7dfa814 100644
--- a/internal/metadata/featureflag/feature_flags.go
+++ b/internal/metadata/featureflag/feature_flags.go
@@ -14,7 +14,9 @@ var (
// CreateRepositoryFromBundleAtomicFetch will add the `--atomic` flag to git-fetch(1) in
// order to reduce the number of transactional votes.
CreateRepositoryFromBundleAtomicFetch = FeatureFlag{Name: "create_repository_from_bundle_atomic_fetch", OnByDefault: false}
- ResolveConflictsWithHooks = FeatureFlag{Name: "resolve_conflicts_with_hooks", OnByDefault: false}
+ // ResolveConflictsWithHooks will cause the ResolveConflicts RPC to run Git hooks after committing changes
+ // to the branch.
+ ResolveConflictsWithHooks = FeatureFlag{Name: "resolve_conflicts_with_hooks", OnByDefault: true}
// ReplicateRepositoryDirectFetch will cause the ReplicateRepository RPC to perform fetches
// via a direct call instead of doing an RPC call to its own server. This fixes calls of
// `ReplicateRepository()` in case it's invoked via Praefect with transactions enabled.