Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion router/pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ type NatsEventSource struct {
ID string `yaml:"id,omitempty"`
URL string `yaml:"url,omitempty"`
Authentication *NatsAuthentication `yaml:"authentication,omitempty"`
Consumers NatsConsumersConfiguration `yaml:"consumers,omitempty"`
Consumers NatsConsumersConfiguration `yaml:"experiment_consumers,omitempty"`
}

func (n NatsEventSource) GetID() string {
Expand Down
6 changes: 3 additions & 3 deletions router/pkg/config/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2581,9 +2581,9 @@
}
]
},
"consumers": {
"experiment_consumers": {
"type": "object",
"description": "Configuration for JetStream consumers managed by this NATS provider.",
"description": "Configuration for JetStream consumers managed by this NATS provider. NOTE: This option and it's suboptions are experimental and may change at any time.",
"additionalProperties": false,
"properties": {
"durable": {
Expand All @@ -2593,7 +2593,7 @@
"properties": {
"delete_on_shutdown": {
"type": "boolean",
"description": "When enabled, all durable JetStream consumers created by this provider are deleted when the router shuts down normally. Defaults to false.",
"description": "When enabled, all durable JetStream consumers created by this provider are deleted when the router shuts down normally. NOTE: This option is experimental and may change at any time. Defaults to false.",
"default": false
}
}
Expand Down
Loading