summaryrefslogtreecommitdiff
path: root/app/controllers/projects/raw_controller.rb
diff options
context:
space:
mode:
authorJacob Vosmaer <contact@jacobvosmaer.nl>2016-01-28 18:04:46 +0100
committerJacob Vosmaer <contact@jacobvosmaer.nl>2016-01-28 18:04:46 +0100
commit26d97ac5e19c242594b59d224a77d41d0f1de6e1 (patch)
treea3b9fab50b744b3480b9db242538484ebb76b834 /app/controllers/projects/raw_controller.rb
parent9109619ee6fe85ee7e8ebfa51c6587319b523930 (diff)
downloadgitlab-ce-26d97ac5e19c242594b59d224a77d41d0f1de6e1.tar.gz
Send more raw blob data with workhorse
Diffstat (limited to 'app/controllers/projects/raw_controller.rb')
-rw-r--r--app/controllers/projects/raw_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/projects/raw_controller.rb b/app/controllers/projects/raw_controller.rb
index e55cdea94ae..b3c846bc3c3 100644
--- a/app/controllers/projects/raw_controller.rb
+++ b/app/controllers/projects/raw_controller.rb
@@ -18,7 +18,7 @@ class Projects::RawController < Projects::ApplicationController
send_lfs_object
else
headers['Gitlab-Workhorse-Repo-Path'] = @repository.path_to_repo
- headers['Gitlab-Workhorse-Send-Blob'] = Base64.urlsafe_encode64(@commit.id + ':' + @path)
+ headers['Gitlab-Workhorse-Send-Blob'] = @blob.id
headers['Content-Disposition'] = 'inline'
render nothing: true, content_type: get_blob_type
end