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:
-rw-r--r--internal/gitaly/service/operations/squash.go2
-rw-r--r--internal/gitaly/service/operations/squash_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/gitaly/service/operations/squash.go b/internal/gitaly/service/operations/squash.go
index 4a942a15e..b73bc58ba 100644
--- a/internal/gitaly/service/operations/squash.go
+++ b/internal/gitaly/service/operations/squash.go
@@ -193,7 +193,7 @@ func (s *Server) userSquash(ctx context.Context, req *gitalypb.UserSquashRequest
}
detailedErr, err := helper.ErrWithDetails(
- helper.ErrInternalf("rebasing commits: %w", err),
+ helper.ErrFailedPreconditionf("rebasing commits: %w", err),
&gitalypb.UserSquashError{
Error: &gitalypb.UserSquashError_RebaseConflict{
RebaseConflict: &gitalypb.MergeConflictError{
diff --git a/internal/gitaly/service/operations/squash_test.go b/internal/gitaly/service/operations/squash_test.go
index 668503535..d0b111215 100644
--- a/internal/gitaly/service/operations/squash_test.go
+++ b/internal/gitaly/service/operations/squash_test.go
@@ -520,7 +520,7 @@ func testUserSquashConflicts(t *testing.T, ctx context.Context) {
if featureflag.UserSquashImprovedErrorHandling.IsEnabled(ctx) {
testhelper.RequireGrpcError(t, errWithDetails(t,
- helper.ErrInternalf("rebasing commits: rebase: commit %q: there are conflicting files", ours),
+ helper.ErrFailedPreconditionf("rebasing commits: rebase: commit %q: there are conflicting files", ours),
&gitalypb.UserSquashError{
Error: &gitalypb.UserSquashError_RebaseConflict{
RebaseConflict: &gitalypb.MergeConflictError{