Commit 9138d41b authored by Jan Provaznik's avatar Jan Provaznik

Merge branch 'revert-5b8bb87a' into 'master'

Revert "Merge branch 'sh-update-rack-2.1.4' into 'master'"

See merge request gitlab-org/gitlab!45246
parents 8d8158a2 706a2f73
...@@ -172,7 +172,7 @@ gem 'diffy', '~> 3.3' ...@@ -172,7 +172,7 @@ gem 'diffy', '~> 3.3'
gem 'diff_match_patch', '~> 0.1.0' gem 'diff_match_patch', '~> 0.1.0'
# Application server # Application server
gem 'rack', '~> 2.1.4' gem 'rack', '~> 2.0.9'
# https://github.com/sharpstone/rack-timeout/blob/master/README.md#rails-apps-manually # https://github.com/sharpstone/rack-timeout/blob/master/README.md#rails-apps-manually
gem 'rack-timeout', '~> 0.5.1', require: 'rack/timeout/base' gem 'rack-timeout', '~> 0.5.1', require: 'rack/timeout/base'
......
...@@ -855,7 +855,7 @@ GEM ...@@ -855,7 +855,7 @@ GEM
public_suffix (4.0.6) public_suffix (4.0.6)
pyu-ruby-sasl (0.0.3.3) pyu-ruby-sasl (0.0.3.3)
raabro (1.1.6) raabro (1.1.6)
rack (2.1.4) rack (2.0.9)
rack-accept (0.4.5) rack-accept (0.4.5)
rack (>= 0.4) rack (>= 0.4)
rack-attack (6.3.0) rack-attack (6.3.0)
...@@ -1429,7 +1429,7 @@ DEPENDENCIES ...@@ -1429,7 +1429,7 @@ DEPENDENCIES
prometheus-client-mmap (~> 0.12.0) prometheus-client-mmap (~> 0.12.0)
pry-byebug (~> 3.9.0) pry-byebug (~> 3.9.0)
pry-rails (~> 0.3.9) pry-rails (~> 0.3.9)
rack (~> 2.1.4) rack (~> 2.0.9)
rack-attack (~> 6.3.0) rack-attack (~> 6.3.0)
rack-cors (~> 1.0.6) rack-cors (~> 1.0.6)
rack-oauth2 (~> 1.9.3) rack-oauth2 (~> 1.9.3)
......
...@@ -172,7 +172,7 @@ class Admin::UsersController < Admin::ApplicationController ...@@ -172,7 +172,7 @@ class Admin::UsersController < Admin::ApplicationController
# restore username to keep form action url. # restore username to keep form action url.
user.username = params[:id] user.username = params[:id]
format.html { render "edit" } format.html { render "edit" }
format.json { render json: [result[:message]], status: :internal_server_error } format.json { render json: [result[:message]], status: result[:status] }
end end
end end
end end
......
...@@ -45,7 +45,7 @@ class Projects::MergeRequests::DraftsController < Projects::MergeRequests::Appli ...@@ -45,7 +45,7 @@ class Projects::MergeRequests::DraftsController < Projects::MergeRequests::Appli
if result[:status] == :success if result[:status] == :success
head :ok head :ok
else else
render json: { message: result[:message] }, status: :internal_server_error render json: { message: result[:message] }, status: result[:status]
end end
end end
......
---
title: Update to Rack v2.1.4
merge_request: 44518
author:
type: fixed
...@@ -72,7 +72,6 @@ module API ...@@ -72,7 +72,6 @@ module API
post '/verify' do post '/verify' do
authenticate_runner! authenticate_runner!
status 200 status 200
body "200"
end end
end end
...@@ -184,7 +183,6 @@ module API ...@@ -184,7 +183,6 @@ module API
service.execute.then do |result| service.execute.then do |result|
header 'X-GitLab-Trace-Update-Interval', result.backoff header 'X-GitLab-Trace-Update-Interval', result.backoff
status result.status status result.status
body result.status.to_s
end end
end end
...@@ -295,7 +293,6 @@ module API ...@@ -295,7 +293,6 @@ module API
if result[:status] == :success if result[:status] == :success
status :created status :created
body "201"
else else
render_api_error!(result[:message], result[:http_status]) render_api_error!(result[:message], result[:http_status])
end end
......
...@@ -522,7 +522,7 @@ module API ...@@ -522,7 +522,7 @@ module API
else else
header(*Gitlab::Workhorse.send_url(file.url)) header(*Gitlab::Workhorse.send_url(file.url))
status :ok status :ok
body "" body
end end
end end
......
...@@ -44,7 +44,7 @@ module API ...@@ -44,7 +44,7 @@ module API
workhorse_headers = Gitlab::Workhorse.send_url(file.url) workhorse_headers = Gitlab::Workhorse.send_url(file.url)
header workhorse_headers[0], workhorse_headers[1] header workhorse_headers[0], workhorse_headers[1]
env['api.format'] = :binary env['api.format'] = :binary
body "" body nil
end end
end end
end end
......
...@@ -338,7 +338,7 @@ RSpec.describe Admin::UsersController do ...@@ -338,7 +338,7 @@ RSpec.describe Admin::UsersController do
describe 'POST update' do describe 'POST update' do
context 'when the password has changed' do context 'when the password has changed' do
def update_password(user, password = User.random_password, password_confirmation = password, format = :html) def update_password(user, password = User.random_password, password_confirmation = password)
params = { params = {
id: user.to_param, id: user.to_param,
user: { user: {
...@@ -347,7 +347,7 @@ RSpec.describe Admin::UsersController do ...@@ -347,7 +347,7 @@ RSpec.describe Admin::UsersController do
} }
} }
post :update, params: params, format: format post :update, params: params
end end
context 'when admin changes their own password' do context 'when admin changes their own password' do
...@@ -446,23 +446,6 @@ RSpec.describe Admin::UsersController do ...@@ -446,23 +446,6 @@ RSpec.describe Admin::UsersController do
.not_to change { user.reload.encrypted_password } .not_to change { user.reload.encrypted_password }
end end
end end
context 'when the update fails' do
let(:password) { User.random_password }
before do
expect_next_instance_of(Users::UpdateService) do |service|
allow(service).to receive(:execute).and_return({ message: 'failed', status: :error })
end
end
it 'returns a 500 error' do
expect { update_password(admin, password, password, :json) }
.not_to change { admin.reload.password_expired? }
expect(response).to have_gitlab_http_status(:error)
end
end
end end
context 'admin notes' do context 'admin notes' do
......
...@@ -142,8 +142,8 @@ RSpec.describe Gitlab::Middleware::Go do ...@@ -142,8 +142,8 @@ RSpec.describe Gitlab::Middleware::Go do
response = go response = go
expect(response[0]).to eq(403) expect(response[0]).to eq(403)
expect(response[1]['Content-Length']).to be_nil expect(response[1]['Content-Length']).to eq('0')
expect(response[2]).to eq(['']) expect(response[2].body).to eq([''])
end end
end end
end end
...@@ -187,11 +187,10 @@ RSpec.describe Gitlab::Middleware::Go do ...@@ -187,11 +187,10 @@ RSpec.describe Gitlab::Middleware::Go do
it 'returns 404' do it 'returns 404' do
response = go response = go
expect(response[0]).to eq(404) expect(response[0]).to eq(404)
expect(response[1]['Content-Type']).to eq('text/html') expect(response[1]['Content-Type']).to eq('text/html')
expected_body = %{<html><body>go get #{Gitlab.config.gitlab.url}/#{project.full_path}</body></html>} expected_body = %{<html><body>go get #{Gitlab.config.gitlab.url}/#{project.full_path}</body></html>}
expect(response[2]).to eq([expected_body]) expect(response[2].body).to eq([expected_body])
end end
end end
...@@ -263,7 +262,7 @@ RSpec.describe Gitlab::Middleware::Go do ...@@ -263,7 +262,7 @@ RSpec.describe Gitlab::Middleware::Go do
expect(response[0]).to eq(200) expect(response[0]).to eq(200)
expect(response[1]['Content-Type']).to eq('text/html') expect(response[1]['Content-Type']).to eq('text/html')
expected_body = %{<html><head><meta name="go-import" content="#{Gitlab.config.gitlab.host}/#{path} git #{repository_url}" /><meta name="go-source" content="#{Gitlab.config.gitlab.host}/#{path} #{project_url} #{project_url}/-/tree/#{branch}{/dir} #{project_url}/-/blob/#{branch}{/dir}/{file}#L{line}" /></head><body>go get #{Gitlab.config.gitlab.url}/#{path}</body></html>} expected_body = %{<html><head><meta name="go-import" content="#{Gitlab.config.gitlab.host}/#{path} git #{repository_url}" /><meta name="go-source" content="#{Gitlab.config.gitlab.host}/#{path} #{project_url} #{project_url}/-/tree/#{branch}{/dir} #{project_url}/-/blob/#{branch}{/dir}/{file}#L{line}" /></head><body>go get #{Gitlab.config.gitlab.url}/#{path}</body></html>}
expect(response[2]).to eq([expected_body]) expect(response[2].body).to eq([expected_body])
end end
end end
end end
...@@ -60,12 +60,12 @@ RSpec.describe Gitlab::Middleware::SameSiteCookies do ...@@ -60,12 +60,12 @@ RSpec.describe Gitlab::Middleware::SameSiteCookies do
end end
context 'with no cookies' do context 'with no cookies' do
let(:cookies) { "" } let(:cookies) { nil }
it 'does not add headers' do it 'does not add headers' do
response = do_request response = do_request
expect(response['Set-Cookie']).to eq("") expect(response['Set-Cookie']).to be_nil
end end
end end
......
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