1
0
şunun yansıması https://github.com/redmine/redmine.git eşitlendi 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
Bu işleme şunda yer alıyor:
Go MAEDA 2023-10-30 09:11:34 +00:00
ebeveyn 5c2c6092cd
işleme 6713c882b4

Dosyayı Görüntüle

@ -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