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

ff_return_structed_errors_in_revert.go « featureflag « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52efdae02d0d27bdfa26d666a8c10067b88d4111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package featureflag

// ReturnStructuredErrorsInUserRevert enables return structured errors in UserRevert.
// Modify the RPC UserRevert to return structured errors instead of
// inline errors. Modify the handling of the following four
// errors: 'Conflict', 'Changes Already Applied', 'Branch diverged',
// and 'CustomHookError'. Returns the corresponding structured error.
var ReturnStructuredErrorsInUserRevert = NewFeatureFlag(
	"return_structured_errors_in_revert",
	"v16.8.0",
	"https://gitlab.com/gitlab-org/gitaly/-/issues/5752",
	false,
)