Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

Commit

Permalink
bump: parent pom, fix update
Browse files Browse the repository at this point in the history
  • Loading branch information
g4s8 committed Nov 16, 2021
1 parent d18e695 commit 96f585d
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 @@ -27,7 +27,7 @@ SOFTWARE.
<parent>
<groupId>com.artipie</groupId>
<artifactId>ppom</artifactId>
<version>0.4.1</version>
<version>1.0.4</version>
</parent>
<artifactId>vertx-server</artifactId>
<version>1.0-SNAPSHOT</version>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/artipie/vertx/VertxSliceServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ private Handler<HttpServerRequest> proxyHandler() {
private CompletionStage<Void> serve(final HttpServerRequest req) {
final HttpServerResponse response = req.response();
return this.served.response(
new RequestLine(req.rawMethod(), req.uri(), req.version().toString()).toString(),
new RequestLine(req.method().name(), req.uri(), req.version().toString()).toString(),
req.headers(),
req.toFlowable().map(buffer -> ByteBuffer.wrap(buffer.getBytes()))
).send(new ContinueConnection(response, new VertxConnection(response)));
Expand Down

0 comments on commit 96f585d

Please sign in to comment.