diff options
-rw-r--r-- | app/controllers/admin_controller.rb | 1 | ||||
-rw-r--r-- | config/locales/en.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/admin_controller.rb b/app/controllers/admin_controller.rb index 40a04dcf7..d365d3519 100644 --- a/app/controllers/admin_controller.rb +++ b/app/controllers/admin_controller.rb @@ -85,5 +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 == :asyncs] #if Rails.env == 'production' end end diff --git a/config/locales/en.yml b/config/locales/en.yml index 7674619ec..670a00d9e 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -1280,6 +1280,7 @@ en: text_minimagick_available: MiniMagick available (optional) text_convert_available: ImageMagick convert available (optional) text_gs_available: ImageMagick PDF support available (optional) + text_default_active_job_queue_changed: Default queue adapter changed (is well suited only for dev/test) text_destroy_time_entries_question: "%{hours} hours were reported on the issues you are about to delete. What do you want to do?" text_destroy_time_entries: Delete reported hours text_assign_time_entries_to_project: Assign reported hours to the project |