Remove management.health.status.order from docs

See gh-18170
This commit is contained in:
dreis2211 2019-09-06 22:05:17 +02:00 committed by Stephane Nicoll
parent 14a676052f
commit 7a49651e09
2 changed files with 15 additions and 1 deletions

View File

@ -23,6 +23,7 @@ import java.util.Map;
import java.util.Set;
import org.springframework.boot.actuate.health.HealthEndpoint;
import org.springframework.boot.context.properties.NestedConfigurationProperty;
/**
* Properties used to configure the health endpoint and endpoint groups.
@ -33,6 +34,7 @@ import org.springframework.boot.actuate.health.HealthEndpoint;
*/
public abstract class HealthProperties {
@NestedConfigurationProperty
private final Status status = new Status();
/**

View File

@ -28,6 +28,15 @@
"name": "management.endpoint.health.show-details",
"defaultValue": "never"
},
{
"name": "management.endpoint.health.status.order",
"defaultValue": [
"DOWN",
"OUT_OF_SERVICE",
"UP",
"UNKNOWN"
]
},
{
"name": "management.endpoints.enabled-by-default",
"type": "java.lang.Boolean",
@ -162,7 +171,10 @@
"OUT_OF_SERVICE",
"UP",
"UNKNOWN"
]
],
"deprecation": {
"replacement": "management.endpoint.health.status.order"
}
},
{
"name": "management.health.mail.enabled",