Meletis Margaritis

Results 2 issues of Meletis Margaritis

I configured the following route with Gateway MVC.fn: ```Java private RouterFunction createDefaultRoute(String routeId) { return route(routeId) .route(RequestPredicates.path("/**"), http("http://httpbin.org")) .before(preserveHostHeader()) .filter(this.handlerFilterFunctionBuilder.buildRateLimitFilter(routeId)) .filter(this.handlerFilterFunctionBuilder.buildSecureHeadersFilter(routeId)) .build(); } ``` When I test it with http://localhost:8080/headers,...

waiting-for-triage

The test resources are not included at runtime when executing "nativeTest". **Steps to reproduce the behavior:** 1. Checkout the following repository at the specific branch: https://github.com/meletis/native-build-tools-bug-report/tree/native-test-failure 3. Execute the following...

bug