Shiva Bommanabathina
Shiva Bommanabathina

Reputation: 81

In Quarkus the health check endpoints /q is appended automatically in url

Recently i have upgraded to latest version of quarkus (version : 1.13.3.final) when ever loaded the swagger URL its appended /q in url automatically for health check endpoints. Is there a way to disable appending /q in url itself for swagger and health points.

ex: health endpoint readiness : /health/ready health endpoint liveness : /health/live but it's appending extra /q in url due to that some logic is not working and can't add /q. Thanks in advance.

Upvotes: 0

Views: 2659

Answers (1)

Oliver Marienfeld
Oliver Marienfeld

Reputation: 1393

As @geoand said, 1.13.7.Final or 2.0.3.Final are the most recent versions. But, to answer your question: In one of the releases, Quarkus introduced the non-application-root-path which distinguishes non-application endpoints like metrics, health or openapi from application endpoints (the ones you create).

non-application-root-path can be set via configuration properties.

Upvotes: 0

Related Questions