Skip to content

Commit

Permalink
Naive(!!) fix/hack
Browse files Browse the repository at this point in the history
  • Loading branch information
snazy committed Aug 23, 2023
1 parent ab3ecce commit 02d6165
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,10 @@ public void handle(RoutingContext routingContext) {
});
}

HttpServerCommonHandlers.enforceMaxBodySize(httpConfiguration.limits(), httpRouteRouter);
// TODO
// HttpServerCommonHandlers.enforceMaxBodySize(httpConfiguration.limits(), httpRouteRouter);
// this feels superfluous as it is repeated below for _non-management_ routes.

// Filter Configuration per path
var filtersInConfig = httpConfiguration.filter();
HttpServerCommonHandlers.applyFilters(filtersInConfig, httpRouteRouter);
Expand Down

0 comments on commit 02d6165

Please sign in to comment.