Skip to content

Commit d4812a0

Browse files
committed
Fixed PR comments ydb-platform#2
1 parent a7866f2 commit d4812a0

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

ydb/core/fq/libs/control_plane_proxy/actors/ydb_schema_query_actor.cpp

+18-18
Original file line numberDiff line numberDiff line change
@@ -585,15 +585,15 @@ IActor* MakeCreateConnectionActor(
585585
status.GetIssues().ToOneLineString().Contains("error: path exist")) {
586586
TActivationContext::ActorSystem()->Register(
587587
new TGenerateRecoverySQLIfExternalDataSourceAlreadyExistsActor(
588-
std::move(sender),
589-
std::move(scope),
590-
std::move(user),
591-
std::move(token),
592-
std::move(cloudId),
593-
std::move(quotas),
594-
std::move(tenantInfo),
595-
std::move(connectionName),
596-
std::move(permissions),
588+
sender,
589+
scope,
590+
user,
591+
token,
592+
cloudId,
593+
quotas,
594+
tenantInfo,
595+
connectionName,
596+
permissions,
597597
requestTimeout,
598598
counters.GetCommonCounters(RTC_CREATE_CONNECTION_IN_YDB)));
599599
return true;
@@ -857,15 +857,15 @@ IActor* MakeCreateBindingActor(const TActorId& proxyActorId,
857857
status.GetIssues().ToOneLineString().Contains("error: path exist")) {
858858
TActivationContext::ActorSystem()->Register(
859859
new TGenerateRecoverySQLIfExternalDataTableAlreadyExistsActor(
860-
std::move(sender),
861-
std::move(scope),
862-
std::move(user),
863-
std::move(token),
864-
std::move(cloudId),
865-
std::move(quotas),
866-
std::move(tenantInfo),
867-
std::move(bindingName),
868-
std::move(permissions),
860+
sender,
861+
scope,
862+
user,
863+
token,
864+
cloudId,
865+
quotas,
866+
tenantInfo,
867+
bindingName,
868+
permissions,
869869
requestTimeout,
870870
counters.GetCommonCounters(RTC_CREATE_BINDING_IN_YDB)));
871871
return true;

0 commit comments

Comments
 (0)