From a62f7689c48023696c9bf2c65948d9143c07f085 Mon Sep 17 00:00:00 2001 From: Ivan Chelyubeev Date: Thu, 21 Dec 2023 18:53:22 +0300 Subject: [PATCH] Move iam auth actors out of IO pool KIKIMR-19644 --- ydb/core/security/ticket_parser_impl.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ydb/core/security/ticket_parser_impl.h b/ydb/core/security/ticket_parser_impl.h index 7b19a03277f9..6a494629e892 100644 --- a/ydb/core/security/ticket_parser_impl.h +++ b/ydb/core/security/ticket_parser_impl.h @@ -1444,7 +1444,7 @@ class TTicketParserImpl : public TActorBootstrapped { } settings.GrpcKeepAliveTimeMs = Config.GetAccessServiceGrpcKeepAliveTimeMs(); settings.GrpcKeepAliveTimeoutMs = Config.GetAccessServiceGrpcKeepAliveTimeoutMs(); - AccessServiceValidator = Register(NCloud::CreateAccessService(settings), TMailboxType::Simple, AppData()->IOPoolId); + AccessServiceValidator = Register(NCloud::CreateAccessService(settings), TMailboxType::Simple, AppData()->UserPoolId); if (Config.GetCacheAccessServiceAuthentication()) { AccessServiceValidator = Register(NCloud::CreateGrpcServiceCache( AccessServiceValidator, @@ -1467,7 +1467,7 @@ class TTicketParserImpl : public TActorBootstrapped { if (Config.GetUseUserAccountServiceTLS()) { settings.CertificateRootCA = TUnbufferedFileInput(Config.GetPathToRootCA()).ReadAll(); } - UserAccountService = Register(CreateUserAccountService(settings), TMailboxType::Simple, AppData()->IOPoolId); + UserAccountService = Register(CreateUserAccountService(settings), TMailboxType::Simple, AppData()->UserPoolId); if (Config.GetCacheUserAccountService()) { UserAccountService = Register(NCloud::CreateGrpcServiceCache( UserAccountService, @@ -1483,7 +1483,7 @@ class TTicketParserImpl : public TActorBootstrapped { if (Config.GetUseServiceAccountServiceTLS()) { settings.CertificateRootCA = TUnbufferedFileInput(Config.GetPathToRootCA()).ReadAll(); } - ServiceAccountService = Register(NCloud::CreateServiceAccountService(settings), TMailboxType::Simple, AppData()->IOPoolId); + ServiceAccountService = Register(NCloud::CreateServiceAccountService(settings), TMailboxType::Simple, AppData()->UserPoolId); if (Config.GetCacheServiceAccountService()) { ServiceAccountService = Register(NCloud::CreateGrpcServiceCache( ServiceAccountService,