@@ -381,25 +381,25 @@ class TGenerateRecoverySQLIfExternalDataSourceAlreadyExistsActor :
381
381
382
382
TGenerateRecoverySQLIfExternalDataSourceAlreadyExistsActor (
383
383
const TActorId sender,
384
- TString scope,
385
- TString user,
386
- TString token,
387
- TString cloudId,
388
- TMaybe<TQuotaMap> quotas,
389
- TTenantInfo::TPtr tenantInfo,
390
- TString connectionName,
391
- TPermissions permissions,
392
- TDuration requestTimeout,
384
+ const TString& scope,
385
+ const TString& user,
386
+ const TString& token,
387
+ const TString& cloudId,
388
+ const TMaybe<TQuotaMap>& quotas,
389
+ const TTenantInfo::TPtr& tenantInfo,
390
+ const TString& connectionName,
391
+ const TPermissions& permissions,
392
+ const TDuration& requestTimeout,
393
393
const TRequestCommonCountersPtr& counters)
394
394
: TPlainBaseActor(sender, sender, std::move(requestTimeout), counters)
395
- , Scope(std::move( scope) )
396
- , User(std::move( user) )
397
- , Token(std::move( token) )
398
- , CloudId(std::move( cloudId) )
399
- , Quotas(std::move( quotas) )
400
- , TenantInfo(std::move( tenantInfo) )
401
- , ConnectionName(std::move( connectionName) )
402
- , Permissions(std::move( permissions) ) { }
395
+ , Scope(scope)
396
+ , User(user)
397
+ , Token(token)
398
+ , CloudId(cloudId)
399
+ , Quotas(quotas)
400
+ , TenantInfo(tenantInfo)
401
+ , ConnectionName(connectionName)
402
+ , Permissions(permissions) { }
403
403
404
404
void BootstrapImpl () override { CheckConnectionExistenceInCPS (); }
405
405
@@ -455,26 +455,26 @@ class TGenerateRecoverySQLIfExternalDataTableAlreadyExistsActor :
455
455
using TBase = TPlainBaseActor;
456
456
457
457
TGenerateRecoverySQLIfExternalDataTableAlreadyExistsActor (
458
- TActorId sender,
459
- TString scope,
460
- TString user,
461
- TString token,
462
- TString cloudId,
463
- TMaybe<TQuotaMap> quotas,
464
- TTenantInfo::TPtr tenantInfo,
465
- TString bindingName,
466
- TPermissions permissions,
467
- TDuration requestTimeout,
458
+ const TActorId& sender,
459
+ const TString& scope,
460
+ const TString& user,
461
+ const TString& token,
462
+ const TString& cloudId,
463
+ const TMaybe<TQuotaMap>& quotas,
464
+ const TTenantInfo::TPtr& tenantInfo,
465
+ const TString& bindingName,
466
+ const TPermissions& permissions,
467
+ const TDuration& requestTimeout,
468
468
const TRequestCommonCountersPtr& counters)
469
- : TPlainBaseActor(std::move( sender) , sender, std::move(requestTimeout), counters)
470
- , Scope(std::move( scope) )
471
- , User(std::move( user) )
472
- , Token(std::move( token) )
473
- , CloudId(std::move( cloudId) )
474
- , Quotas(std::move( quotas) )
475
- , TenantInfo(std::move( tenantInfo) )
476
- , BindingName(std::move( bindingName) )
477
- , Permissions(std::move( permissions) ) { }
469
+ : TPlainBaseActor(sender, sender, std::move(requestTimeout), counters)
470
+ , Scope(scope)
471
+ , User(user)
472
+ , Token(token)
473
+ , CloudId(cloudId)
474
+ , Quotas(quotas)
475
+ , TenantInfo(tenantInfo)
476
+ , BindingName(bindingName)
477
+ , Permissions(permissions) { }
478
478
479
479
void BootstrapImpl () override { CheckBindingExistenceInCPS (); }
480
480
0 commit comments