Skip to content

Commit

Permalink
health check issue resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
urviljoshi committed Aug 19, 2022
1 parent 17fdf37 commit 224199e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void start(Future<Void> future) {
.produces(PRIDGeneratorConstant.APPLICATION_JSON);
// mount all the routers to parent router
parentRouter.mountSubRouter(environment.getProperty(PRIDGeneratorConstant.SERVER_SERVLET_PATH), metricRouter);
parentRouter.mountSubRouter(environment.getProperty(PRIDGeneratorConstant.SERVER_SERVLET_PATH), healthCheckRouter);
parentRouter.get(environment.getProperty(PRIDGeneratorConstant.SERVER_SERVLET_PATH)+PRIDGeneratorConstant.HEALTH_ENDPOINT).handler(healthCheckHandler);
parentRouter.mountSubRouter(
environment.getProperty(PRIDGeneratorConstant.SERVER_SERVLET_PATH) + PRIDGeneratorConstant.PRID,
pridFetcherRouter.createRouter(vertx));
Expand Down

0 comments on commit 224199e

Please sign in to comment.