mirror of https://github.com/apache/kafka.git
MINOR: Upgrade jetty to 9.4.30.v20200611 (#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 currently latest version (2.31) `Response#closeOutput` will be called if `Response#completeOutput` throws a `NoSuchMethodError` exception. Given that, this version combination is compatible. Jersey should be upgraded once a new version that uses `Response#closeOutput` directly is out.
Reviewers: Ismael Juma <ismael@juma.me.uk>
This commit is contained in:
parent
52d9d6651f
commit
2dfb6b05e1
|
@ -68,7 +68,7 @@ versions += [
|
|||
easymock: "4.2",
|
||||
jackson: "2.10.2",
|
||||
jacoco: "0.8.5",
|
||||
jetty: "9.4.27.v20200227",
|
||||
jetty: "9.4.30.v20200611",
|
||||
jersey: "2.31",
|
||||
jmh: "1.23",
|
||||
hamcrest: "2.2",
|
||||
|
|
Loading…
Reference in New Issue