updated HealthCheckResponse
This commit is contained in:
parent
deca344022
commit
22bf660710
|
@ -11,6 +11,8 @@ import javax.ws.rs.core.Response;
|
||||||
|
|
||||||
import org.eclipse.microprofile.health.HealthCheck;
|
import org.eclipse.microprofile.health.HealthCheck;
|
||||||
import org.eclipse.microprofile.health.HealthCheckResponse;
|
import org.eclipse.microprofile.health.HealthCheckResponse;
|
||||||
|
import org.eclipse.microprofile.health.HealthCheckResponse.Status;
|
||||||
|
import org.eclipse.microprofile.health.Liveness;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Class UriResolverHealthCheck.
|
* The Class UriResolverHealthCheck.
|
||||||
|
@ -28,7 +30,6 @@ public class UriResolverHealthCheck implements HealthCheck {
|
||||||
public Response check() {
|
public Response check() {
|
||||||
|
|
||||||
HealthCheckResponse hcr = call();
|
HealthCheckResponse hcr = call();
|
||||||
|
|
||||||
return Response.ok().entity(hcr).build();
|
return Response.ok().entity(hcr).build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,26 +38,10 @@ public class UriResolverHealthCheck implements HealthCheck {
|
||||||
*
|
*
|
||||||
* @return the health check response
|
* @return the health check response
|
||||||
*/
|
*/
|
||||||
|
@Liveness
|
||||||
@Override
|
@Override
|
||||||
public HealthCheckResponse call() {
|
public HealthCheckResponse call() {
|
||||||
// return HealthCheckResponse.named("uri-resolver").up().build();
|
|
||||||
|
|
||||||
// WORKS in native
|
return new HealthCheckResponse("uri-resolver", Status.UP, Optional.empty());
|
||||||
return new HealthCheckResponse() {
|
|
||||||
@Override
|
|
||||||
public String getName() {
|
|
||||||
return "uri-resolver";
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Status getStatus() {
|
|
||||||
return Status.UP;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Optional<Map<String, Object>> getData() {
|
|
||||||
return Optional.empty();
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue