Skip to content

Commit

Permalink
update to 12.0.15
Browse files Browse the repository at this point in the history
Signed-off-by: Lachlan Roberts <[email protected]>
  • Loading branch information
lachlan-roberts committed Nov 26, 2024
1 parent 2fa6684 commit ef045b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<maven.compiler.target>1.8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jetty.version>9.4.56.v20240826</jetty.version>
<jetty12.version>12.0.14</jetty12.version>
<jetty12.version>12.0.15</jetty12.version>
<io.grpc>1.68.1</io.grpc>
<io.netty>4.1.115.Final</io.netty>
<slf4j.version>2.0.16</slf4j.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ public void testRequestContentAboveMaxLengthGzip() throws Exception {
.header(HttpHeader.CONTENT_ENCODING, "gzip")
.send(completionListener::complete);

Result result = completionListener.get(5000, TimeUnit.SECONDS);
Result result = completionListener.get(5, TimeUnit.SECONDS);
assertThat(result.getResponse().getStatus(), equalTo(HttpStatus.PAYLOAD_TOO_LARGE_413));

// If there is no Content-Length header the SizeLimitHandler fails the response as well.
Expand Down

0 comments on commit ef045b1

Please sign in to comment.