minor cleanup -- removed unused requires, note class used only for Ruby pipeline

Fixes #9658
This commit is contained in:
Dan Hermann 2018-05-24 15:18:09 -05:00
parent 3f58461cf7
commit 0a04d1456b
2 changed files with 1 additions and 8 deletions

View file

@ -1,12 +1,6 @@
# encoding: utf-8
require "logstash/json"
# transient pipeline events for normal in-flow signaling as opposed to
# flow altering exceptions. for now having base classes is adequate and
# in the future it might be necessary to refactor using like a BaseEvent
# class to have a common interface for all pipeline events to support
# eventual queueing persistence for example, TBD.
# used only in the Ruby execution engine
module LogStash
class SignalEvent
def flush?; raise "abstract method"; end;

View file

@ -1,7 +1,6 @@
# encoding: utf-8
require "thread"
require "concurrent"
require "logstash/event"
require "logstash/filters/base"
require "logstash/inputs/base"
require "logstash/outputs/base"