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:
authorPavlo Strokov <pstrokov@gitlab.com>2023-01-31 13:32:03 +0300
committerPavlo Strokov <pstrokov@gitlab.com>2023-01-31 13:32:03 +0300
commita6eb9a326d545192be119d4b5bbcb920876adc21 (patch)
tree1d093cb14567356fadf82c36c798ccfe92102187 /internal/testhelper
parent47d44e3c845c0ba55aebc4f8cdcfb6dabe012726 (diff)
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
Diffstat (limited to 'internal/testhelper')
-rw-r--r--internal/testhelper/testhelper.go1
1 files changed, 0 insertions, 1 deletions
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)