Sylar
Sylar

Reputation: 12082

How to pass current_user to Sidekiq's Worker

I am trying to pass current_user or User.find(1) to a worker module but getting error in the sidekiq's dashboard (localhost:3000/sidekiq/retries):

NoMethodError: undefined method `supports' for "#":String

note: my relations are ok ie:

u = User.find(1)
u.supports
#=> []

supports_controller.rb:

def create
 @user = current_user
 ProjectsWorker.perform_async(@user)

 ...

end

app/workers/projects_worker.rb:

class ProjectsWorker
  include Sidekiq::Worker
  def perform(user)
    u = user
    @support = u.supports.build(support_params)
  end
end

Re-starting my sidekiq server makes no difference. This is on my development machine.

Upvotes: 5

Views: 2050

Answers (1)

Roman Kiselenko
Roman Kiselenko

Reputation: 44370

From the Sidekiq documentation:

The arguments you pass to perform_async must be composed of simple JSON datatypes: string, integer, float, boolean, null, array and hash. The Sidekiq client API uses JSON.dump to send the data to Redis. The Sidekiq server pulls that JSON data from Redis and uses JSON.load to convert the data back into Ruby types to pass to your perform method. Don't pass symbols or complex Ruby objects (like Date or Time!) as those will not survive the dump/load round trip correctly.

Pass an id instead of object:

def create
  ProjectsWorker.perform_async(current_user.id)
end

worker:

class ProjectsWorker
  include Sidekiq::Worker
  def perform(user_id)
    u = User.find(user_id)
    @support = u.supports.build(support_params)
  end
end

Upvotes: 9

Related Questions