Skip to content

Commit 815ab7d

Browse files
committed
Add missing default value for Pulsar properties
Closes gh-41682
1 parent f6334ca commit 815ab7d

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

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

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2028,18 +2028,46 @@
20282028
"name": "spring.neo4j.uri",
20292029
"defaultValue": "bolt://localhost:7687"
20302030
},
2031+
{
2032+
"name": "spring.pulsar.consumer.subscription.initial-position",
2033+
"defaultValue": "latest"
2034+
},
2035+
{
2036+
"name": "spring.pulsar.consumer.subscription.mode",
2037+
"defaultValue": "durable"
2038+
},
2039+
{
2040+
"name": "spring.pulsar.consumer.subscription.topics-mode",
2041+
"defaultValue": "persistentonly"
2042+
},
2043+
{
2044+
"name": "spring.pulsar.consumer.subscription.type",
2045+
"defaultValue": "exclusive"
2046+
},
20312047
{
20322048
"name": "spring.pulsar.function.enabled",
20332049
"type": "java.lang.Boolean",
20342050
"description": "Whether to enable function support.",
20352051
"defaultValue": true
20362052
},
2053+
{
2054+
"name": "spring.pulsar.producer.access-mode",
2055+
"defaultValue": "shared"
2056+
},
20372057
{
20382058
"name": "spring.pulsar.producer.cache.enabled",
20392059
"type": "java.lang.Boolean",
20402060
"description": "Whether to enable caching in the PulsarProducerFactory.",
20412061
"defaultValue": true
20422062
},
2063+
{
2064+
"name": "spring.pulsar.producer.hashing-scheme",
2065+
"defaultValue": "javastringhash"
2066+
},
2067+
{
2068+
"name": "spring.pulsar.producer.message-routing-mode",
2069+
"defaultValue": "roundrobinpartition"
2070+
},
20432071
{
20442072
"name": "spring.quartz.jdbc.comment-prefix",
20452073
"defaultValue": [

0 commit comments

Comments
 (0)