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
Some checks failed
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Failing after 22s
This commit is contained in:
@ -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,
|
||||
|
||||
|
Reference in New Issue
Block a user