diff options
author | Z.J. van de Weg <zegerjan@gitlab.com> | 2016-06-28 14:59:25 +0200 |
---|---|---|
committer | Z.J. van de Weg <zegerjan@gitlab.com> | 2016-06-28 22:10:53 +0200 |
commit | db0a6c10edff0eebe81297763dd9e0a9965c507f (patch) | |
tree | 54cf63bb2ba2924173c5a27d550ff9ca3d243a96 | |
parent | c31f876a275c03111488ef72474116a619ffb0d8 (diff) | |
download | gitlab-ce-zj-workhorse-format-patch.tar.gz |
Bump workhorse versionzj-workhorse-format-patch
-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 |