Skip to content

Commit c003d5b

Browse files
committed
Merge branch '2.5.x' into 2.6.x
Closes gh-30436
2 parents 35d8f1d + 0ff8119 commit c003d5b

File tree

5 files changed

+142
-136
lines changed

5 files changed

+142
-136
lines changed

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

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"groups": [],
23
"properties": [
34
{
45
"name": "info",
@@ -332,13 +333,6 @@
332333
"reason": "Instead, filter 'process.uptime' and 'process.start.time' metrics."
333334
}
334335
},
335-
{
336-
"name": "management.metrics.system.diskspace.paths",
337-
"type": "java.util.List<java.io.File>",
338-
"defaultValue": [
339-
"."
340-
]
341-
},
342336
{
343337
"name": "management.metrics.export.appoptics.num-threads",
344338
"type": "java.lang.Integer",
@@ -544,6 +538,13 @@
544538
"description": "Whether to enable Mongo connection pool metrics.",
545539
"defaultValue": true
546540
},
541+
{
542+
"name": "management.metrics.system.diskspace.paths",
543+
"type": "java.util.List<java.io.File>",
544+
"defaultValue": [
545+
"."
546+
]
547+
},
547548
{
548549
"name": "management.metrics.web.client.request.autotime.enabled",
549550
"description": "Whether to automatically time web client requests.",
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
2+
"groups": [],
23
"properties": [
34
{
45
"name": "management.endpoints.migrate-legacy-ids",
56
"type": "java.lang.Boolean",
67
"description": "Whether to transparently migrate legacy endpoint IDs.",
78
"defaultValue": false
89
}
9-
]
10+
],
11+
"hints": []
1012
}

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

+17-16
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"groups": [],
23
"properties": [
34
{
45
"name": "server.compression.enabled",
@@ -514,6 +515,14 @@
514515
"level": "error"
515516
}
516517
},
518+
{
519+
"name": "spring.data.cassandra.pool.heartbeat-interval",
520+
"defaultValue": "30s"
521+
},
522+
{
523+
"name": "spring.data.cassandra.pool.idle-timeout",
524+
"defaultValue": "5s"
525+
},
517526
{
518527
"name": "spring.data.cassandra.pool.max-queue-size",
519528
"type": "java.lang.Integer",
@@ -549,14 +558,14 @@
549558
"name": "spring.data.cassandra.request.page-size",
550559
"defaultValue": 5000
551560
},
552-
{
553-
"name": "spring.data.cassandra.request.timeout",
554-
"defaultValue": "2s"
555-
},
556561
{
557562
"name": "spring.data.cassandra.request.throttler.type",
558563
"defaultValue": "none"
559564
},
565+
{
566+
"name": "spring.data.cassandra.request.timeout",
567+
"defaultValue": "2s"
568+
},
560569
{
561570
"name": "spring.data.cassandra.retry-policy",
562571
"type": "java.lang.Class",
@@ -565,14 +574,6 @@
565574
"level": "error"
566575
}
567576
},
568-
{
569-
"name": "spring.data.cassandra.pool.heartbeat-interval",
570-
"defaultValue": "30s"
571-
},
572-
{
573-
"name": "spring.data.cassandra.pool.idle-timeout",
574-
"defaultValue": "5s"
575-
},
576577
{
577578
"name": "spring.data.couchbase.consistency",
578579
"type": "org.springframework.data.couchbase.core.query.Consistency",
@@ -1641,6 +1642,10 @@
16411642
"name": "spring.neo4j.uri",
16421643
"defaultValue": "bolt://localhost:7687"
16431644
},
1645+
{
1646+
"name": "spring.netty.leak-detection",
1647+
"defaultValue": "simple"
1648+
},
16441649
{
16451650
"name": "spring.quartz.jdbc.comment-prefix",
16461651
"defaultValue": [
@@ -2026,10 +2031,6 @@
20262031
"name": "spring.webservices.wsdl-locations",
20272032
"type": "java.util.List<java.lang.String>",
20282033
"description": "Comma-separated list of locations of WSDLs and accompanying XSDs to be exposed as beans."
2029-
},
2030-
{
2031-
"name": "spring.netty.leak-detection",
2032-
"defaultValue": "simple"
20332034
}
20342035
],
20352036
"hints": [
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
{
2+
"groups": [],
23
"properties": [
34
{
45
"name": "spring.devtools.add-properties",
56
"type": "java.lang.Boolean",
67
"description": "Whether to enable development property defaults.",
78
"defaultValue": true
89
}
9-
]
10+
],
11+
"hints": []
1012
}

0 commit comments

Comments
 (0)