Displaying 1 result from an estimated 1 matches for "runner_worker".
2007 Aug 23
0
"interning empty string - (ArgumentError)" passing AR objects between workers
...worker runs every minute and polls some
table for jobs that need to be run at that time. For each job found, the
"dispatcher" spawns a "runner" worker that runs the job. So in my
"dispatcher" worker, I have some code like this:
MiddleMan.new_worker(:class => :runner_worker, :args => job)
I did add "include DRbUndumped" in my Job model, and it works fine
directly from the console. But from the "dispatcher" worker, I get the
following error (see full traceback attached):
"interning empty string - (ArgumentError)"
How can I get t...