From db0a6c10edff0eebe81297763dd9e0a9965c507f Mon Sep 17 00:00:00 2001
From: "Z.J. van de Weg" <zegerjan@gitlab.com>
Date: Tue, 28 Jun 2016 14:59:25 +0200
Subject: [PATCH] Bump workhorse version

---
 GITLAB_WORKHORSE_VERSION | 2 +-
 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
-- 
GitLab