diff options
-rw-r--r-- | GITLAB_WORKHORSE_VERSION | 2 | ||||
-rw-r--r-- | lib/gitlab/workhorse.rb | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/GITLAB_WORKHORSE_VERSION b/GITLAB_WORKHORSE_VERSION index 8bd6ba8c5c3..879be8a98fc 100644 --- a/GITLAB_WORKHORSE_VERSION +++ b/GITLAB_WORKHORSE_VERSION @@ -1 +1 @@ -0.7.5 +0.7.7 diff --git a/lib/gitlab/workhorse.rb b/lib/gitlab/workhorse.rb index 5c3449f0b5b..ef1241f8600 100644 --- a/lib/gitlab/workhorse.rb +++ b/lib/gitlab/workhorse.rb @@ -54,13 +54,13 @@ module Gitlab def send_git_patch(repository, from, to) params = { - 'RepoPath' => repository.path_to_repo, - 'ShaFrom' => from, - 'ShaTo' => to + 'RepoPath' => repository.path_to_repo, + 'ShaFrom' => from, + 'ShaTo' => to } [ - SEND_DATA_HEADER, + SEND_DATA_HEADER, "git-format-patch:#{encode(params)}" ] end |