Skip to content

Commit acf6e2b

Browse files
authored
Merge 955d522 into af0844f
2 parents af0844f + 955d522 commit acf6e2b

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

ydb/core/driver_lib/run/kikimr_services_initializers.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1643,9 +1643,7 @@ void TGRpcServicesInitializer::InitializeServices(NActors::TActorSystemSetup* se
16431643
const size_t proxyCount = Config.HasGRpcConfig() ? Config.GetGRpcConfig().GetGRpcProxyCount() : 1UL;
16441644
NJaegerTracing::TSamplingThrottlingConfigurator tracingConfigurator(appData->TimeProvider, appData->RandomProvider);
16451645
for (size_t i = 0; i < proxyCount; ++i) {
1646-
auto grpcReqProxy = Config.HasGRpcConfig() && Config.GetGRpcConfig().GetSkipSchemeCheck()
1647-
? NGRpcService::CreateGRpcRequestProxySimple(Config)
1648-
: NGRpcService::CreateGRpcRequestProxy(Config, tracingConfigurator.GetControl());
1646+
auto grpcReqProxy = NGRpcService::CreateGRpcRequestProxy(Config, tracingConfigurator.GetControl());
16491647
setup->LocalServices.push_back(std::pair<TActorId,
16501648
TActorSetupCmd>(NGRpcService::CreateGRpcRequestProxyId(i),
16511649
TActorSetupCmd(grpcReqProxy, TMailboxType::ReadAsFilled,

ydb/core/protos/config.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ message TGRpcConfig {
669669
repeated string ServicesEnabled = 22;
670670
repeated string ServicesDisabled = 23;
671671

672-
optional bool SkipSchemeCheck = 24 [default = false];
672+
optional bool SkipSchemeCheck = 24 [default = false, deprecated = true];
673673

674674
repeated string RatelimiterServicesEnabled = 25;
675675
repeated string RatelimiterServicesDisabled = 26;

0 commit comments

Comments
 (0)