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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorZ.J. van de Weg <zegerjan@gitlab.com>2016-06-28 15:59:25 +0300
committerZ.J. van de Weg <zegerjan@gitlab.com>2016-06-28 23:10:53 +0300
commitdb0a6c10edff0eebe81297763dd9e0a9965c507f (patch)
tree54cf63bb2ba2924173c5a27d550ff9ca3d243a96 /lib
parentc31f876a275c03111488ef72474116a619ffb0d8 (diff)
Bump workhorse version
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab/workhorse.rb8
1 files changed, 4 insertions, 4 deletions
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