summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbulatman <[email protected]>2024-11-10 01:48:58 +0300
committerbulatman <[email protected]>2024-11-10 01:59:55 +0300
commit305dc93e9e1afc927686fe0c735511f68585683d (patch)
treee60ba65b602db261c456e580bf35b0c231b5136e
parent9ade466e8683a2e3b45dacf45f74fcf4a3c40cee (diff)
YT: Use ipv6 by default from service discovery endpoints
commit_hash:e86979e06d3da29afb1906e79ad128b77553722b
-rw-r--r--yt/yt/core/rpc/config.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/yt/yt/core/rpc/config.cpp b/yt/yt/core/rpc/config.cpp
index b9cb445371d..f5868094aab 100644
--- a/yt/yt/core/rpc/config.cpp
+++ b/yt/yt/core/rpc/config.cpp
@@ -223,7 +223,7 @@ void TServiceDiscoveryEndpointsConfig::Register(TRegistrar registrar)
registrar.Parameter("use_ipv4", &TThis::UseIPv4)
.Default(false);
registrar.Parameter("use_ipv6", &TThis::UseIPv6)
- .Default(false);
+ .Default(true);
registrar.Postprocessor([] (TThis* config) {
if (config->Cluster.has_value() == !config->Clusters.empty()) {