mirror of
https://github.com/discourse/discourse.git
synced 2025-02-11 13:55:07 +00:00
* DEV: Upgrade Rails to 7.1 * FIX: Remove references to `Rails.logger.chained` `Rails.logger.chained` was provided by Logster before Rails 7.1 introduced their broadcast logger. Now all the loggers are added to `Rails.logger.broadcasts`. Some code in our initializers was still using `chained` instead of `broadcasts`. * DEV: Make parameters optional to all FakeLogger methods * FIX: Set `override_level` on Logster loggers (#27519) A followup to f595d599dd361b7fb39fb3c82cbc11d19d518c19 * FIX: Don’t duplicate Rack response --------- Co-authored-by: Jarek Radosz <jradosz@gmail.com>
14 lines
380 B
Ruby
14 lines
380 B
Ruby
# frozen_string_literal: true
|
|
|
|
module I18nHelpers
|
|
def allow_missing_translations
|
|
original_handler = I18n.exception_handler
|
|
I18n.exception_handler = nil
|
|
Rails.application.config.i18n.raise_on_missing_translations = false
|
|
yield
|
|
ensure
|
|
I18n.exception_handler = original_handler
|
|
Rails.application.config.i18n.raise_on_missing_translations = true
|
|
end
|
|
end
|