Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions ydb/core/driver_lib/run/run.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@
#include <ydb/services/ydb/ydb_export.h>
#include <ydb/services/ydb/ydb_import.h>
#include <ydb/services/ydb/ydb_logstore.h>
#include <ydb/services/ydb/ydb_long_tx.h>
#include <ydb/services/ydb/ydb_operation.h>
#include <ydb/services/ydb/ydb_query.h>
#include <ydb/services/ydb/ydb_scheme.h>
Expand Down Expand Up @@ -565,8 +564,6 @@ void TKikimrRunner::InitializeGRpc(const TKikimrRunConfig& runConfig) {
names["clickhouse_internal"] = &hasClickhouseInternal;
TServiceCfg hasRateLimiter = false;
names["rate_limiter"] = &hasRateLimiter;
TServiceCfg hasLongTx = false;
names["long_tx"] = &hasLongTx;
TServiceCfg hasExport = services.empty();
names["export"] = &hasExport;
TServiceCfg hasImport = services.empty();
Expand Down Expand Up @@ -726,11 +723,6 @@ void TKikimrRunner::InitializeGRpc(const TKikimrRunConfig& runConfig) {
grpcRequestProxies[0], hasScripting.IsRlAllowed()));
}

if (hasLongTx) {
server.AddService(new NGRpcService::TGRpcYdbLongTxService(ActorSystem.Get(), Counters,
grpcRequestProxies[0], hasLongTx.IsRlAllowed()));
}

if (hasSchemeService) {
// RPC RL enabled
// We have no way to disable or enable this service explicitly
Expand Down
Loading