lib/adhearsion/call_controller/output/async_player.rb in adhearsion-2.4.0 vs lib/adhearsion/call_controller/output/async_player.rb in adhearsion-2.5.0

- old
+ new

@@ -4,17 +4,18 @@ class CallController module Output class AsyncPlayer < AbstractPlayer # - # @yields The output component before executing it - # @raises [PlaybackError] if (one of) the given argument(s) could not be played + # @yield The output component before executing it + # @raise [PlaybackError] if (one of) the given argument(s) could not be played # def output(content, options = {}) options.merge! :ssml => content component = new_output options component.register_event_handler Punchblock::Event::Complete do |event| controller.logger.error event if event.reason.is_a?(Punchblock::Event::Complete::Error) + throw :pass end controller.write_and_await_response component component rescue Punchblock::ProtocolError => e raise PlaybackError, "Async output failed due to #{e.inspect}"