mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
Fix stale type references in configuration metadata
See gh-50375 Signed-off-by: Kimgyuilli <rlarbdlf222@naver.com>
This commit is contained in:
committed by
Stéphane Nicoll
parent
23829221ef
commit
ed6c375d19
+1
-1
@@ -201,7 +201,7 @@
|
||||
},
|
||||
{
|
||||
"name": "management.wavefront.api-token-type",
|
||||
"type": "org.springframework.boot.actuate.autoconfigure.wavefront.WavefrontProperties$TokenType",
|
||||
"type": "java.lang.String",
|
||||
"deprecation": {
|
||||
"level": "error",
|
||||
"reason": "Wavefront is end-of-life.",
|
||||
|
||||
+1
-1
@@ -44,7 +44,7 @@
|
||||
},
|
||||
{
|
||||
"name": "spring.datasource.initialization-mode",
|
||||
"type": "org.springframework.boot.jdbc.DataSourceInitializationMode",
|
||||
"type": "org.springframework.boot.sql.init.DatabaseInitializationMode",
|
||||
"deprecation": {
|
||||
"level": "error",
|
||||
"replacement": "spring.sql.init.mode",
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@
|
||||
{
|
||||
"name": "spring.mail.test-connection",
|
||||
"description": "Whether to test that the mail server is available on startup.",
|
||||
"sourceType": "org.springframework.boot.autoconfigure.mail.MailProperties",
|
||||
"sourceType": "org.springframework.boot.mail.autoconfigure.MailSenderValidatorAutoConfiguration",
|
||||
"type": "java.lang.Boolean",
|
||||
"defaultValue": false
|
||||
}
|
||||
|
||||
+1
-1
@@ -1393,7 +1393,7 @@
|
||||
},
|
||||
{
|
||||
"name": "management.metrics.export.prometheus.pushgateway.shutdown-operation",
|
||||
"type": "org.springframework.boot.actuate.metrics.export.prometheus.PrometheusPushGatewayManager$ShutdownOperation",
|
||||
"type": "org.springframework.boot.micrometer.metrics.export.prometheus.PrometheusPushGatewayManager$ShutdownOperation",
|
||||
"deprecation": {
|
||||
"level": "error",
|
||||
"replacement": "management.prometheus.metrics.export.pushgateway.shutdown-operation",
|
||||
|
||||
+2
-2
@@ -9,7 +9,7 @@
|
||||
},
|
||||
{
|
||||
"name": "management.otlp.logging.compression",
|
||||
"type": "org.springframework.boot.opentelemetry.actuate.autoconfigure.logging.OpenTelemetryLoggingExportProperties$Compression",
|
||||
"type": "org.springframework.boot.opentelemetry.autoconfigure.logging.otlp.OtlpLoggingProperties$Compression",
|
||||
"description": "Method used to compress the payload.",
|
||||
"defaultValue": "none",
|
||||
"deprecation": {
|
||||
@@ -70,7 +70,7 @@
|
||||
},
|
||||
{
|
||||
"name": "management.otlp.logging.transport",
|
||||
"type": "org.springframework.boot.opentelemetry.actuate.autoconfigure.logging.Transport",
|
||||
"type": "org.springframework.boot.opentelemetry.autoconfigure.logging.otlp.Transport",
|
||||
"description": "Transport used to send the logs.",
|
||||
"defaultValue": "http",
|
||||
"deprecation": {
|
||||
|
||||
Reference in New Issue
Block a user