Skip to content

Commit dca2dc8

Browse files
committed
Upgrade netty 4.0.54.Final
1 parent 90ee39a commit dca2dc8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/src/test/java/org/asynchttpclient/request/body/multipart/MultipartUploadTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public void testSendingSmallFilesAndByteArray() throws Exception {
137137
private void sendEmptyFile0(boolean disableZeroCopy) throws Exception {
138138
File file = getClasspathFile("empty.txt");
139139
try (AsyncHttpClient c = asyncHttpClient(config().setDisableZeroCopy(disableZeroCopy))) {
140-
Request r = post("http://localhost/" + ":" + port1 + "/upload/bob")
140+
Request r = post("http://localhost/" + ":" + port1 + "/upload")
141141
.addBodyPart(new FilePart("file", file, "text/plain", UTF_8)).build();
142142

143143
Response res = c.executeRequest(r).get();

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@
376376
<surefire.redirectTestOutputToFile>true</surefire.redirectTestOutputToFile>
377377
<source.property>1.8</source.property>
378378
<target.property>1.8</target.property>
379-
<netty.version>4.0.52.Final</netty.version>
379+
<netty.version>4.0.54.Final</netty.version>
380380
<slf4j.version>1.7.25</slf4j.version>
381381
<logback.version>1.2.3</logback.version>
382382
<testng.version>6.9.10</testng.version>

0 commit comments

Comments
 (0)