summaryrefslogtreecommitdiffstats
path: root/app/controllers/sys_controller.rb
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2024-06-12 16:09:37 +0000
committerGo MAEDA <maeda@farend.jp>2024-06-12 16:09:37 +0000
commitb803bddb1f32842b0a5ec93640778d902b5f7999 (patch)
treefb1dba7c75c0dc0111516d2d4384b89ecefb5e1a /app/controllers/sys_controller.rb
parente41bc39322cae528d1c24256f6f404f5937d78ab (diff)
downloadredmine-b803bddb1f32842b0a5ec93640778d902b5f7999.tar.gz
redmine-b803bddb1f32842b0a5ec93640778d902b5f7999.zip
Fix "ArgumentError: Invalid response name: unprocessable_entity" with Rack 3.1.0+ in assert_response (#39889).
Rack 3.1.0 changed the symbol for HTTP status code 422 from `:unprocessable_entity` to `:unprocessable_content`. Due to the change, `assert_response(:unprocessable_entity, ...)` raises ArgumentError with Rack 3.1.0+. This fix is a follow-up to r22837. git-svn-id: https://svn.redmine.org/redmine/trunk@22876 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/sys_controller.rb')
-rw-r--r--app/controllers/sys_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/sys_controller.rb b/app/controllers/sys_controller.rb
index 7e785f951..2ba7f9982 100644
--- a/app/controllers/sys_controller.rb
+++ b/app/controllers/sys_controller.rb
@@ -46,7 +46,7 @@ class SysController < ActionController::Base
if repository.save
render :json => {repository.class.name.underscore.tr('/', '-') => {:id => repository.id, :url => repository.url}}, :status => :created
else
- head :unprocessable_entity
+ head :unprocessable_content
end
end
end