Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jandro996 committed Jun 15, 2023
1 parent e874108 commit bc23838
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import io.vertx.core.http.HttpServerOptions;
import io.vertx.ext.web.Cookie;
import io.vertx.ext.web.Router;
import io.vertx.ext.web.handler.BodyHandler;
import io.vertx.ext.web.impl.CookieImpl;

public class IastSourceVerticle extends AbstractVerticle {
Expand Down Expand Up @@ -68,6 +69,7 @@ public void start(final Future<Void> startPromise) {
});
router
.route("/iast/propagation/handleData")
.handler(BodyHandler.create())
.handler(
rc -> {
rc.getBodyAsJson();
Expand Down

0 comments on commit bc23838

Please sign in to comment.