diff options
author | tesseract <tesseract@yandex-team.com> | 2023-08-30 15:31:59 +0300 |
---|---|---|
committer | tesseract <tesseract@yandex-team.com> | 2023-08-30 16:07:52 +0300 |
commit | c0a64c3c1f6d2d39aa831b5da08c48be92447e8e (patch) | |
tree | 953d110b62d6666ceeed7def605e8737265a114c | |
parent | 2a6fe42ec1f143aa44c90f8129ae22783f3577bf (diff) | |
download | ydb-c0a64c3c1f6d2d39aa831b5da08c48be92447e8e.tar.gz |
Disable Kafka protocol by default
-rw-r--r-- | ydb/core/protos/config.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/protos/config.proto b/ydb/core/protos/config.proto index 658e61f75f..122aa8077e 100644 --- a/ydb/core/protos/config.proto +++ b/ydb/core/protos/config.proto @@ -1930,7 +1930,7 @@ message TLocalPgWireConfig { } message TKafkaProxyConfig { - optional bool EnableKafkaProxy = 1 [default = true]; + optional bool EnableKafkaProxy = 1 [default = false]; optional int32 ListeningPort = 2 [default = 9092]; optional string SslCertificate = 3; |