Skip to content

Commit

Permalink
Fix HttpRootPathBuildItem.Builder.orderedRoute()
Browse files Browse the repository at this point in the history
- the order value is not used
  • Loading branch information
mkouba committed Mar 23, 2023
1 parent 3c22fa3 commit 3237af9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public Builder orderedRoute(String route, Integer order) {
this.routerType = RouteType.ABSOLUTE_ROUTE;
}

BasicRoute basicRoute = new BasicRoute(this.path, -1);
BasicRoute basicRoute = new BasicRoute(this.path, order);

super.routeFunction = basicRoute;
return this;
Expand Down

0 comments on commit 3237af9

Please sign in to comment.