Navigation Menu

Skip to content

Commit

Permalink
Fix a bug that adapted message may not be used
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Apr 24, 2014
1 parent 592a92e commit 6c109d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/droonga/dispatcher.rb
Expand Up @@ -221,7 +221,7 @@ def process_input_message(message)
adapter_runner = @adapter_runners[dataset]
adapted_message = adapter_runner.adapt_input(message)
step_runner = @step_runners[dataset]
plan = step_runner.plan(message)
plan = step_runner.plan(adapted_message)
distributor = Distributor.new(self, plan)
distributor.distribute
rescue Droonga::UnsupportedMessageError => error
Expand Down

0 comments on commit 6c109d2

Please sign in to comment.