mirror of https://github.com/apache/kafka.git
KAFKA-14863: Fix failing tests for invalid plugins that are no longer visible (#13805)
Reviewers: Chris Egerton <chrise@aiven.io>
This commit is contained in:
parent
146a6976ae
commit
6678f1b66a
|
|
@ -69,7 +69,7 @@ public class TestPlugins {
|
||||||
/**
|
/**
|
||||||
* A plugin which will always throw an exception during loading
|
* A plugin which will always throw an exception during loading
|
||||||
*/
|
*/
|
||||||
ALWAYS_THROW_EXCEPTION("always-throw-exception", "test.plugins.AlwaysThrowException"),
|
ALWAYS_THROW_EXCEPTION("always-throw-exception", "test.plugins.AlwaysThrowException", false),
|
||||||
/**
|
/**
|
||||||
* A plugin which samples information about its initialization.
|
* A plugin which samples information about its initialization.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -133,7 +133,7 @@ public class ConnectorPluginsResourceTest {
|
||||||
HEADER_CONVERTER_PLUGINS.add(new MockConnectorPluginDesc<>(LongConverter.class));
|
HEADER_CONVERTER_PLUGINS.add(new MockConnectorPluginDesc<>(LongConverter.class));
|
||||||
|
|
||||||
TRANSFORMATION_PLUGINS.add(new MockConnectorPluginDesc<>(RegexRouter.class));
|
TRANSFORMATION_PLUGINS.add(new MockConnectorPluginDesc<>(RegexRouter.class));
|
||||||
TRANSFORMATION_PLUGINS.add(new MockConnectorPluginDesc<>(TimestampConverter.class));
|
TRANSFORMATION_PLUGINS.add(new MockConnectorPluginDesc<>(TimestampConverter.Key.class));
|
||||||
|
|
||||||
PREDICATE_PLUGINS.add(new MockConnectorPluginDesc<>(HasHeaderKey.class));
|
PREDICATE_PLUGINS.add(new MockConnectorPluginDesc<>(HasHeaderKey.class));
|
||||||
PREDICATE_PLUGINS.add(new MockConnectorPluginDesc<>(RecordIsTombstone.class));
|
PREDICATE_PLUGINS.add(new MockConnectorPluginDesc<>(RecordIsTombstone.class));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue