From af45339245e18f1267bbf4d272330c23c0dbe8b1 Mon Sep 17 00:00:00 2001 From: Rodrigo Tassinari de Oliveira Date: Tue, 18 Nov 2008 12:12:20 -0200 Subject: [PATCH] Fixes bj_invoker.rb which was dispatching the job to Bj without the method_name. --- script/bj_invoker.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/bj_invoker.rb b/script/bj_invoker.rb index 9fd4d10..33c660d 100644 --- a/script/bj_invoker.rb +++ b/script/bj_invoker.rb @@ -7,5 +7,5 @@ options = options.symbolize_keys method_name = @routing.method_name(command) - workling.dispatch_to_worker_method(method, options) -end \ No newline at end of file + workling.dispatch_to_worker_method(method_name, options) +end