kkonstantine opened a new pull request #8893: URL: https://github.com/apache/kafka/pull/8893
Recently commit 492306a updated both jetty to version 9.4.27.v20200227 and jersey to version 2.31 However in the latest versions of jetty, the renaming of the method `Response#closeOutput` to `Response#completeOutput` has been reverted, with the latest version using again `Response#closeOutput`. Jersey has not released a recent version in which `Response#closeOutput` is called directly. In its latest version 2.31 `Response#closeOutput` will be called if `Response#completeOutput` throws a `NoSuchMethodError` exception, which keeps things functional but inefficient. Therefore we can choose to merge this PR early, while waiting for a new version of jersey, or we could wait and update both dependencies together again. ### 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org