Vinicius Vieira

Results 12 comments of Vinicius Vieira

I had the same problem and did a test by removing this substitution and indeed now everything is working as expected. @sbodvanski Thank you for opening the issue, with this...

> Hi @viniciusxyz > > as already mentioned in the previous ticket, > > > there are some open issues around the management interfaces where we still need some work....

> 🙋 we're also interested in having that added. > > In the meantime, did anybody already reach out to Micrometer? It looks like this can be detected: the current...

> > Very interesting ! I hadn't paid attention to this detail in Micrometer, I'm going to download the code and do some tests, but for my part I didn't...

> To make this non-breaking IMO we should support `endpoints.all.context-path` I will try to update MR over the weekend by adding this property.

> > To make this non-breaking IMO we should support `endpoints.all.context-path` > > I will try to update MR over the weekend by adding this property. I apologize, but due...

@sdelamo I made the changes based on the comments made and instead of changing the behavior of **endpoints.all.path** the idea is to add the **endpoints.all.context-path** property, I am finishing the...

> Can you add a controller to the test to verify the controller is still accessible in the expected path? > > Moreover, can you modify your test to test...

@sdelamo The problem currently is that when defining **micronaut.server.context-path** and **endpoints.all.context-path** as in [this test](https://github.com/micronaut-projects/micronaut-core/pull/9820/files#diff-a7e03f43d7a65b07d3577352e534d84a6decf667a08c5939173bee737fabb0c4R64), **EndpointsFilter -> doFilter** is never called, this occurs because of this code snippet [ServerFilterRouteBuilder.java](https://github.com/micronaut-projects/micronaut-core/blob/4.2.x/router/src/main/java/io/micronaut/web/router/ServerFilterRouteBuilder.java#L68). As...

@sdelamo Since I couldn't get the filter to ignore the ContextPath in the filters, I added a new property to the ServerFilter to establish whether the ContextPath should be added...