Skip to content

Commit ed6c375

Browse files
Kimgyuillisnicoll
authored andcommitted
Fix stale type references in configuration metadata
See gh-50375 Signed-off-by: Kimgyuilli <rlarbdlf222@naver.com>
1 parent 2382922 commit ed6c375

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

module/spring-boot-actuator-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@
201201
},
202202
{
203203
"name": "management.wavefront.api-token-type",
204-
"type": "org.springframework.boot.actuate.autoconfigure.wavefront.WavefrontProperties$TokenType",
204+
"type": "java.lang.String",
205205
"deprecation": {
206206
"level": "error",
207207
"reason": "Wavefront is end-of-life.",

module/spring-boot-jdbc/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
},
4545
{
4646
"name": "spring.datasource.initialization-mode",
47-
"type": "org.springframework.boot.jdbc.DataSourceInitializationMode",
47+
"type": "org.springframework.boot.sql.init.DatabaseInitializationMode",
4848
"deprecation": {
4949
"level": "error",
5050
"replacement": "spring.sql.init.mode",

module/spring-boot-mail/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
{
1111
"name": "spring.mail.test-connection",
1212
"description": "Whether to test that the mail server is available on startup.",
13-
"sourceType": "org.springframework.boot.autoconfigure.mail.MailProperties",
13+
"sourceType": "org.springframework.boot.mail.autoconfigure.MailSenderValidatorAutoConfiguration",
1414
"type": "java.lang.Boolean",
1515
"defaultValue": false
1616
}

module/spring-boot-micrometer-metrics/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1393,7 +1393,7 @@
13931393
},
13941394
{
13951395
"name": "management.metrics.export.prometheus.pushgateway.shutdown-operation",
1396-
"type": "org.springframework.boot.actuate.metrics.export.prometheus.PrometheusPushGatewayManager$ShutdownOperation",
1396+
"type": "org.springframework.boot.micrometer.metrics.export.prometheus.PrometheusPushGatewayManager$ShutdownOperation",
13971397
"deprecation": {
13981398
"level": "error",
13991399
"replacement": "management.prometheus.metrics.export.pushgateway.shutdown-operation",

module/spring-boot-opentelemetry/src/main/resources/META-INF/additional-spring-configuration-metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
},
1010
{
1111
"name": "management.otlp.logging.compression",
12-
"type": "org.springframework.boot.opentelemetry.actuate.autoconfigure.logging.OpenTelemetryLoggingExportProperties$Compression",
12+
"type": "org.springframework.boot.opentelemetry.autoconfigure.logging.otlp.OtlpLoggingProperties$Compression",
1313
"description": "Method used to compress the payload.",
1414
"defaultValue": "none",
1515
"deprecation": {
@@ -70,7 +70,7 @@
7070
},
7171
{
7272
"name": "management.otlp.logging.transport",
73-
"type": "org.springframework.boot.opentelemetry.actuate.autoconfigure.logging.Transport",
73+
"type": "org.springframework.boot.opentelemetry.autoconfigure.logging.otlp.Transport",
7474
"description": "Transport used to send the logs.",
7575
"defaultValue": "http",
7676
"deprecation": {

0 commit comments

Comments
 (0)