summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ydb/tools/cfg/base.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/ydb/tools/cfg/base.py b/ydb/tools/cfg/base.py
index 5c6dbfcd201..3eb3a8f861e 100644
--- a/ydb/tools/cfg/base.py
+++ b/ydb/tools/cfg/base.py
@@ -709,12 +709,7 @@ class ClusterDetailsProvider(object):
@property
def grpc_config(self):
- grpc_config = merge_with_default(GRPC_DEFAULT_CONFIG, self.__cluster_description.get("grpc", {}))
- # specifying both `port` and `ssl_port` leads to erroneous behavior in ydbd, half of the incoming
- # connections use tls, half do not, so this is prohibited
- if grpc_config.get("ssl_port") is not None:
- del grpc_config["port"]
- return grpc_config
+ return merge_with_default(GRPC_DEFAULT_CONFIG, self.__cluster_description.get("grpc", {}))
@property
def dynamicnameservice_config(self):