I'm trying to make resque work with heroku. It works with my other application but I don't understand this error in the worker logs:
PG::Error: result has been cleared: SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1
So whenever I add a job to the queue, a worker takes the job and throws the error above.
Here is the worker class:
class Companies
@queue = :companies
def self.perform(current_user_id, model)
@current_user = User.find(current_user_id)
... do things with @current_user and model...
end
end
And I call the perform action using: Resque.enqueue(Companies, current_user.id, 'quotes')
Thanks for your help.