Pull the msg locale out and set the current thread to use it.
13 14 15 16 17 18
# File 'lib/sidekiq/middleware/i18n.rb', line 13 def call(worker, msg, queue) I18n.locale = msg['locale'] || I18n.default_locale yield ensure I18n.locale = I18n.default_locale end