From a6eb9a326d545192be119d4b5bbcb920876adc21 Mon Sep 17 00:00:00 2001 From: Pavlo Strokov Date: Tue, 31 Jan 2023 12:32:03 +0200 Subject: featureflag: Remove convert_err_to_status The feature flag 'convert_err_to_status' is default-enabled for a full release now and there are no issues reported. Now it can be removed completely from the code. Part of: https://gitlab.com/gitlab-org/gitaly/-/issues/4603 --- internal/testhelper/testhelper.go | 1 - 1 file changed, 1 deletion(-) (limited to 'internal/testhelper') diff --git a/internal/testhelper/testhelper.go b/internal/testhelper/testhelper.go index 839765759..3ff1ae7bc 100644 --- a/internal/testhelper/testhelper.go +++ b/internal/testhelper/testhelper.go @@ -196,7 +196,6 @@ func ContextWithoutCancel(opts ...ContextOpt) context.Context { // deep in the call stack, so almost every test function would have to inject it into its // context. The values of these flags should be randomized to increase the test coverage. ctx = featureflag.ContextWithFeatureFlag(ctx, featureflag.RunCommandsInCGroup, true) - ctx = featureflag.ContextWithFeatureFlag(ctx, featureflag.ConvertErrToStatus, true) // Randomly enable the use of the catfile cache in localrepo.ReadObject. ctx = featureflag.ContextWithFeatureFlag(ctx, featureflag.LocalrepoReadObjectCached, rnd.Int()%2 == 0) -- cgit v1.2.3