From 01d9efec1be736b863d8ff3fc8ec47aca89c4056 Mon Sep 17 00:00:00 2001 From: Matthias Wessendorf Date: Thu, 29 Nov 2018 10:38:07 +0100 Subject: [PATCH] adding correct port --- http/vertx/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/vertx/README.md b/http/vertx/README.md index a15f9a53..368e0c79 100644 --- a/http/vertx/README.md +++ b/http/vertx/README.md @@ -33,7 +33,7 @@ public class Server extends AbstractVerticle { Below is a sample on how to use the client to send a CloudEvent: ```java -final HttpClientRequest request = vertx.createHttpClient().post(7890, "localhost", "/"); +final HttpClientRequest request = vertx.createHttpClient().post(8080, "localhost", "/"); CeVertx.writeToHttpClientRequest(cloudEvent, request); request.handler(resp -> {