Pull the msg locale out and set the current thread to use it.
19 20 21 22 23 24
# File 'lib/sidekiq/middleware/i18n.rb', line 19 def call(worker, msg, queue) I18n.locale = msg['locale'] || I18n.default_locale yield ensure I18n.locale = I18n.default_locale end