put player in a player object in the return json and update the cache information in json responses
Some checks failed
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Failing after 22s

This commit is contained in:
Lee
2024-04-13 17:10:40 +01:00
parent 2895525412
commit c198339acc
9 changed files with 92 additions and 37 deletions

View File

@ -24,10 +24,9 @@ public final class CachedEndpointStatus implements Serializable {
private final Map<String, Status> endpoints;
/**
* The unix timestamp of when this
* server was cached, -1 if not cached.
* The cache information about the request.
*/
private long cached;
private CacheInformation cache;
public enum Status {
/**
@ -36,10 +35,8 @@ public final class CachedEndpointStatus implements Serializable {
ONLINE,
/**
* The service is degraded and may not be fully operational.
* <p>
* This could be due to high load or other issues.
* </p>
* The service is online, but may be experiencing issues.
* This could be due to high load or other issues.
*/
DEGRADED,