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:
Diffstat (limited to 'internal/gitaly/service/operations/apply_patch.go')
-rw-r--r--internal/gitaly/service/operations/apply_patch.go11
1 files changed, 4 insertions, 7 deletions
diff --git a/internal/gitaly/service/operations/apply_patch.go b/internal/gitaly/service/operations/apply_patch.go
index 644bcec5f..aa38e378d 100644
--- a/internal/gitaly/service/operations/apply_patch.go
+++ b/internal/gitaly/service/operations/apply_patch.go
@@ -93,12 +93,9 @@ func (s *Server) userApplyPatch(ctx context.Context, header *gitalypb.UserApplyP
branchCreated = true
}
- committerTime := time.Now()
- if header.Timestamp != nil {
- committerTime, err = dateFromProto(header)
- if err != nil {
- return structerr.NewInvalidArgument("%w", err)
- }
+ committerDate, err := dateFromProto(header)
+ if err != nil {
+ return structerr.NewInvalidArgument("%w", err)
}
worktreePath := newWorktreePath(path, "am-")
@@ -128,7 +125,7 @@ func (s *Server) userApplyPatch(ctx context.Context, header *gitalypb.UserApplyP
git.WithEnv(
"GIT_COMMITTER_NAME="+string(header.GetUser().Name),
"GIT_COMMITTER_EMAIL="+string(header.GetUser().Email),
- "GIT_COMMITTER_DATE="+git.FormatTime(committerTime),
+ "GIT_COMMITTER_DATE="+git.FormatTime(committerDate),
),
git.WithStdin(streamio.NewReader(func() ([]byte, error) {
req, err := stream.Recv()