jerryshao commented on code in PR #10840:
URL: https://github.com/apache/gravitino/pull/10840#discussion_r3122959282
##########
server/src/main/java/org/apache/gravitino/server/GravitinoServer.java:
##########
@@ -175,6 +176,11 @@ protected void configure() {
server.addServlet(servlet, API_ANY_PATH);
Servlet configServlet = new ConfigServlet(serverConfig);
server.addServlet(configServlet, "/configs");
+
+ // Root-level alias for enterprise GTMs that require probes at well-known
root paths.
+ // Forwards /health, /health/live, /health/ready to the canonical
/api/health/* endpoints.
+ server.addServlet(new HealthAliasServlet(), "/health/*");
Review Comment:
No, I delibrately removed this. I will modify the PR description.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]