lib/floe/workflow/states/wait.rb in floe-0.8.0 vs lib/floe/workflow/states/wait.rb in floe-0.9.0

- old
+ new

@@ -26,13 +26,12 @@ validate_state! end def start(input) super - input = input_path.value(context, input) - context.output = output_path.value(context, input) - context.next_state = end? ? nil : @next + input = input_path.value(context, input) + context.output = output_path.value(context, input) wait_until!( :seconds => seconds_path ? seconds_path.value(context, input).to_i : seconds, :time => timestamp_path ? timestamp_path.value(context, input) : timestamp )