Fix #19383: Fix AttributeError in redpanda connector (#21421)

This commit is contained in:
Mayur Singal 2025-05-28 16:08:14 +05:30 committed by GitHub
parent 8eb0b25c19
commit dd689d4aa8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 0 deletions

View File

@ -42,6 +42,12 @@
"type": "string",
"format": "password"
},
"schemaRegistryTopicSuffixName": {
"title": "Schema Registry Topic Suffix Name",
"description": "Schema Registry Topic Suffix Name. The suffix to be appended to the topic name to get topic schema from registry.",
"type": "string",
"default": "-value"
},
"securityProtocol": {
"title": "Security Protocol",
"description": "security.protocol consumer config property",

View File

@ -43,6 +43,11 @@ export interface RedpandaConnection {
* Confluent Redpanda Schema Registry Config.
*/
schemaRegistryConfig?: { [key: string]: any };
/**
* Schema Registry Topic Suffix Name. The suffix to be appended to the topic name to get
* topic schema from registry.
*/
schemaRegistryTopicSuffixName?: string;
/**
* Confluent Redpanda Schema Registry URL.
*/