lib/ruote/worker.rb in ruote-2.1.3 vs lib/ruote/worker.rb in ruote-2.1.4
- old
+ new
@@ -25,11 +25,11 @@
require 'ruote/fei'
module Ruote
- VERSION = '2.1.3'
+ VERSION = '2.1.4'
class Worker
EXP_ACTIONS = %w[ reply cancel fail receive ]
# 'apply' is comprised in 'launch'
@@ -213,12 +213,10 @@
return false if cannot_handle(msg)
return false unless @storage.reserve(msg)
- fexp = nil
-
begin
action = msg['action']
if msg['tree']
@@ -246,10 +244,10 @@
notify(msg)
rescue Exception => ex
- handle_exception(msg, fexp, ex)
+ handle_exception(msg, nil, ex)
end
true
end