1
0
espelhamento de https://github.com/redmine/redmine.git sincronizado 2024-07-31 20:21:21 +02:00

Fix reversed display of default queue adapter check (#36695).

git-svn-id: https://svn.redmine.org/redmine/trunk@22403 e93f8b46-1217-0410-a6f0-8f06a7374b81
Esse commit está contido em:
Go MAEDA 2023-10-30 09:11:34 +00:00
commit 6713c882b4

Ver arquivo

@ -85,6 +85,6 @@ class AdminController < ApplicationController
[:text_convert_available, Redmine::Thumbnail.convert_available?],
[:text_gs_available, Redmine::Thumbnail.gs_available?]
]
@checklist << [:text_default_active_job_queue_changed, Rails.application.config.active_job.queue_adapter == :async] if Rails.env.production?
@checklist << [:text_default_active_job_queue_changed, Rails.application.config.active_job.queue_adapter != :async] if Rails.env.production?
end
end