Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
UgnineSirdis committed Jan 17, 2025
1 parent cd2f173 commit c2bcb40
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ydb/core/driver_lib/run/kikimr_services_initializers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -951,8 +951,8 @@ void TBSNodeWardenInitializer::InitializeServices(NActors::TActorSystemSetup* se
nodeWardenConfig->SelfManagementConfig.emplace(Config.GetSelfManagementConfig());
}

ObtainTenantKey(&nodeWardenConfig->TenantKey, Config.GetKeyConfig());
ObtainStaticKey(&nodeWardenConfig->StaticKey);
ObtainTenantKeys(&nodeWardenConfig->TenantKeys, Config.GetKeyConfig());
ObtainStaticKeys(&nodeWardenConfig->StaticKeys);
ObtainPDiskKey(&nodeWardenConfig->PDiskKey, Config.GetPDiskKeyConfig());

setup->LocalServices.push_back(std::pair<TActorId, TActorSetupCmd>(MakeBlobStorageNodeWardenID(NodeId),
Expand Down
4 changes: 2 additions & 2 deletions ydb/core/testlib/basics/storage.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ namespace NKikimr {
vDisk->LevelCompaction = true;
vDisk->MaxLogoBlobDataSize = Conf.UseDisk ? CHUNK_SIZE / 3 : MEM_CHUNK_SIZE / 3;

ObtainTenantKey(&conf->TenantKey, keyConfig);
ObtainStaticKey(&conf->StaticKey);
ObtainTenantKeys(&conf->TenantKeys, keyConfig);
ObtainStaticKeys(&conf->StaticKeys);

return conf;
}
Expand Down

0 comments on commit c2bcb40

Please sign in to comment.