add a status instead of a boolean online / offline for the endpoint status
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m40s

This commit is contained in:
Lee
2024-04-13 16:46:45 +01:00
parent 66f5660274
commit 348edfd1ef
2 changed files with 17 additions and 7 deletions

View File

@ -21,11 +21,17 @@ public final class CachedEndpointStatus implements Serializable {
/**
* The list of endpoints and their status.
*/
private final Map<String, Boolean> endpoints;
private final Map<String, Status> endpoints;
/**
* The unix timestamp of when this
* server was cached, -1 if not cached.
*/
private long cached;
public enum Status {
ONLINE,
DEGRADED,
OFFLINE
}
}