mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
14 lines
446 B
Ruby
14 lines
446 B
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
# Ensure all models are preloaded, as Zammad uses reflections
|
|
# which rely on all model classes being present.
|
|
Rails.application.reloader.to_prepare do
|
|
begin
|
|
Models.all
|
|
rescue ActiveRecord::StatementInvalid
|
|
nil
|
|
rescue ActiveRecord::ConnectionNotEstablished, ActiveRecord::NoDatabaseError => e
|
|
warn e
|
|
Zammad::SafeMode.continue_or_exit!
|
|
end
|
|
end
|