From 75bae3a9e2bf2b10f85e15181c8e9cdfd023470f Mon Sep 17 00:00:00 2001 From: Igor Drozdov Date: Thu, 2 May 2024 12:35:49 +0200 Subject: [PATCH] Enable commit signing for self-managed instances This commit enables gpg_signing feature flag by default. It enables commit singing for self-managed instances and now the customers can configure commit signing for themselves. We cannot remove the feature flag for now because the feature flag is not yet enabled globally on .com --- internal/featureflag/ff_gitaly_gpg_signing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/featureflag/ff_gitaly_gpg_signing.go b/internal/featureflag/ff_gitaly_gpg_signing.go index 9db14e1537..5061f9d1b1 100644 --- a/internal/featureflag/ff_gitaly_gpg_signing.go +++ b/internal/featureflag/ff_gitaly_gpg_signing.go @@ -5,5 +5,5 @@ var GPGSigning = NewFeatureFlag( "gpg_signing", "v16.2.0", "https://gitlab.com/gitlab-org/gitaly/-/issues/5361", - false, + true, ) -- GitLab