elastic / logstash-devutils

An assortment of tooling/libraries to make Logstash core and plugin development and releasing a bit easier.
Apache License 2.0
18 stars 27 forks source link

Add `events` method to QueueBatchDelegator #85

Closed robbavey closed 4 years ago

robbavey commented 4 years ago

After https://github.com/elastic/logstash/pull/11737 was committed, plugin unit tests using sample targeted against branches with this change merged were failing due to the lack of events method on the QueueBatchDelegator.

This commit adds an events method to fix the failing tests.

robbavey commented 4 years ago

See https://travis-ci.org/github/logstash-plugins/logstash-filter-date/jobs/676393345 for an example of failing tests on master

robbavey commented 4 years ago

Thanks @kares!