gharris1727 opened a new pull request, #13912: URL: https://github.com/apache/kafka/pull/13912
In #13467 we changed non-connector plugins to be instantiated during plugin scanning. This has the effect that converters and transform classes without a valid (public, no-args) constructor print an error log during worker startup. These two plugin classes are not marked `public`, so their constructor is not public either, which causes these two classes to print an error during plugin scanning. Because these are used in runtime:test, they will generate log spam for integration tests for ourselves and anyone including the runtime:test artifact, such as downstream projects wishing to use the EmbeddedConnectCluster. We should change these plugins so that no warnings are printed during scanning. The existing TestPlugins should be the only place in which this error condition is tested. ### Committer Checklist (excluded from commit message) - [ ] Verify design and implementation - [ ] Verify test coverage and CI build status - [ ] Verify documentation (including upgrade notes) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org