Skip to content
Snippets Groups Projects
Commit aa613efc authored by Mingyang Zhu's avatar Mingyang Zhu
Browse files

deprecate the old health check API code and integrate with spring boot...

deprecate the old health check API code and integrate with spring boot actuator health endpoint. Implement a customized health indicator in azure controlled by a parameter.
parent 465423a6
No related branches found
No related tags found
1 merge request!53customized readiness check to make sure cache layer is ready before serving traffic
package org.opengroup.osdu.partition.service;
import org.opengroup.osdu.partition.provider.interfaces.IHealthCheckService;
import org.springframework.stereotype.Service;
@Service
public class DefaultHealthCheckImpl implements IHealthCheckService {
@Override
public void performLivenessCheck() {
}
@Override
public void performReadinessCheck() {
}
}
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