class Sidekiq::Middleware::I18n::Server

Pull the msg locale out and set the current thread to use it.

Public Instance Methods

call(_worker, msg, _queue, &block) click to toggle source
# File lib/sidekiq/middleware/i18n.rb, line 21
def call(_worker, msg, _queue, &block)
  I18n.with_locale(msg.fetch("locale", I18n.default_locale), &block)
end