Skip to content

Commit

Permalink
Fix NodeWarden caching error (#3014)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvru authored Mar 21, 2024
1 parent 8d1f4fa commit fe6d594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb/core/blobstorage/nodewarden/node_warden_resource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ void TNodeWarden::Handle(TEvNodeWardenStorageConfig::TPtr ev) {
ev->Get()->Config->Swap(&StorageConfig);
if (StorageConfig.HasBlobStorageConfig()) {
if (const auto& bsConfig = StorageConfig.GetBlobStorageConfig(); bsConfig.HasServiceSet()) {
ApplyServiceSet(bsConfig.GetServiceSet(), true, false, true);
ApplyServiceSet(bsConfig.GetServiceSet(), true, false, false);
}
}
for (const TActorId& subscriber : StorageConfigSubscribers) {
Expand Down

0 comments on commit fe6d594

Please sign in to comment.