Skip to content
Snippets Groups Projects
Commit bade28b7 authored by Vishal Lal's avatar Vishal Lal Committed by GitHub
Browse files

Merge pull request #27 from microservices-demo/rename-healthcheck-svc

Rename cart to carts in healthcheck
parents ff2cc18b 560fc86b
No related branches found
No related tags found
No related merge requests found
......@@ -28,7 +28,7 @@ public class HealthCheckController {
List<HealthCheck> healthChecks = new ArrayList<HealthCheck>();
Date dateNow = Calendar.getInstance().getTime();
HealthCheck app = new HealthCheck("cart", "OK", dateNow);
HealthCheck app = new HealthCheck("carts", "OK", dateNow);
HealthCheck database = new HealthCheck("carts-db", "OK", dateNow);
try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment