Put health check handler behind /health/readiness
Signed-off-by: Horst Gutmann <horst.gutmann@grafana.com>
This commit is contained in:
@@ -27,7 +27,7 @@ createBackendPlugin({
|
||||
},
|
||||
async init({ rootHttpRouter }) {
|
||||
const router = Router();
|
||||
router.get('', (request, response) => {
|
||||
router.get('/readiness', (request, response) => {
|
||||
response.send('OK');
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user