Skip to content

Commit

Permalink
chore!: removing the deprecated api in favor of latest
Browse files Browse the repository at this point in the history
router.mountSubRouter("/eventbus", subRouter);
To 
router.route("/eventbus/*").subRouter(subRouter);
  • Loading branch information
sanjuthomas authored and vietj committed Oct 11, 2022
1 parent 13877de commit c264d64
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public void start() throws Exception {
event.complete(true);

});
router.mountSubRouter("/eventbus", subRouter);
router.route("/eventbus/*").subRouter(subRouter);


// Serve the static resources
Expand Down

0 comments on commit c264d64

Please sign in to comment.