Add missing default value for Pulsar properties
Closes gh-41682
This commit is contained in:
parent
f6334ca186
commit
815ab7df94
|
@ -2028,18 +2028,46 @@
|
|||
"name": "spring.neo4j.uri",
|
||||
"defaultValue": "bolt://localhost:7687"
|
||||
},
|
||||
{
|
||||
"name": "spring.pulsar.consumer.subscription.initial-position",
|
||||
"defaultValue": "latest"
|
||||
},
|
||||
{
|
||||
"name": "spring.pulsar.consumer.subscription.mode",
|
||||
"defaultValue": "durable"
|
||||
},
|
||||
{
|
||||
"name": "spring.pulsar.consumer.subscription.topics-mode",
|
||||
"defaultValue": "persistentonly"
|
||||
},
|
||||
{
|
||||
"name": "spring.pulsar.consumer.subscription.type",
|
||||
"defaultValue": "exclusive"
|
||||
},
|
||||
{
|
||||
"name": "spring.pulsar.function.enabled",
|
||||
"type": "java.lang.Boolean",
|
||||
"description": "Whether to enable function support.",
|
||||
"defaultValue": true
|
||||
},
|
||||
{
|
||||
"name": "spring.pulsar.producer.access-mode",
|
||||
"defaultValue": "shared"
|
||||
},
|
||||
{
|
||||
"name": "spring.pulsar.producer.cache.enabled",
|
||||
"type": "java.lang.Boolean",
|
||||
"description": "Whether to enable caching in the PulsarProducerFactory.",
|
||||
"defaultValue": true
|
||||
},
|
||||
{
|
||||
"name": "spring.pulsar.producer.hashing-scheme",
|
||||
"defaultValue": "javastringhash"
|
||||
},
|
||||
{
|
||||
"name": "spring.pulsar.producer.message-routing-mode",
|
||||
"defaultValue": "roundrobinpartition"
|
||||
},
|
||||
{
|
||||
"name": "spring.quartz.jdbc.comment-prefix",
|
||||
"defaultValue": [
|
||||
|
|
Loading…
Reference in New Issue