We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1f5b91 commit 2f33cfeCopy full SHA for 2f33cfe
ydb/tools/cfg/base.py
@@ -709,12 +709,7 @@ def default_log_level(self):
709
710
@property
711
def grpc_config(self):
712
- grpc_config = merge_with_default(GRPC_DEFAULT_CONFIG, self.__cluster_description.get("grpc", {}))
713
- # specifying both `port` and `ssl_port` leads to erroneous behavior in ydbd, half of the incoming
714
- # connections use tls, half do not, so this is prohibited
715
- if grpc_config.get("ssl_port") is not None:
716
- del grpc_config["port"]
717
- return grpc_config
+ return merge_with_default(GRPC_DEFAULT_CONFIG, self.__cluster_description.get("grpc", {}))
718
719
720
def dynamicnameservice_config(self):
0 commit comments