Commit bf4371d6 authored by Tomasz Maczukin's avatar Tomasz Maczukin

Switch raw trace to use X-Sendfile header

parent 27d1349f
class Projects::BuildsController < Projects::ApplicationController
before_action :build, except: [:index, :cancel_all]
before_action :authorize_read_build!, except: [:cancel, :cancel_all, :retry]
before_action :authorize_update_build!, except: [:index, :show, :status, :raw_trace]
before_action :authorize_update_build!, except: [:index, :show, :status, :raw]
layout 'project'
def index
......@@ -63,11 +63,14 @@ class Projects::BuildsController < Projects::ApplicationController
end
def raw
response.headers['Content-Typei'] = 'text/plain'
if @build.has_trace?
render json: { trace_file: @build.path_to_trace }
response.headers['X-Sendfile'] = @build.path_to_trace
else
render json: {}, status: 404
response.status = 404
end
render nothing: true
end
private
......
......@@ -669,7 +669,7 @@ Rails.application.routes.draw do
post :cancel
post :retry
post :erase
get :raw, format: false
get :raw
end
resource :artifacts, only: [] do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment