mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
This is in prep for a Docker based test run approach, and by removing the dependent Docker containers we will avoid Docker in Docker requirements. Fixes #8211
7 lines
123 B
Ruby
7 lines
123 B
Ruby
require_relative "service"
|
|
|
|
class KafkaService < Service
|
|
def initialize(settings)
|
|
super("kafka", settings)
|
|
end
|
|
end
|