Displaying 2 results from an estimated 2 matches for "dummy_result".
2008 Jun 07
0
Process Request and dummy_result
I''ve only been working with backgroundrb a few days so I don''t know
much of the procedures involved with its development....
But I came across what I consider a glitch in the latest GIT version
of the source.
The file server/lib/metaworker.rb at line 247
result = "dummy_result" unless result
should be changed to::
result = "dummy_result" if result.nil?
The problem is if a function returns FALSE it is presently switched to
"dummy_result" by this line ... effectively changing the return from
FALSE to TRUE ...
2008 Apr 04
0
Bug in meta_worker.rb
I propose changing meta_worker.rb line 240 from:
result = "dummy_result" unless result
to
result = "dummy_result" unless defined?(result)
If my worker is returning false, I get "dummy_result" instead.
Thanks!
Norman