Skip to content

Commit

Permalink
Merge pull request #32008 from mkouba/fix-httrootpathbuilditem
Browse files Browse the repository at this point in the history
Fix HttpRootPathBuildItem.Builder.orderedRoute()
  • Loading branch information
mkouba committed Mar 23, 2023
2 parents 9e6739b + 3237af9 commit 611f79f
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 611f79f

Please sign in to comment.