We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 567b4a1 + fafc6ed commit 42fe0dfCopy full SHA for 42fe0df
ydb/core/mind/hive/tx__load_everything.cpp
@@ -188,7 +188,11 @@ class TTxLoadEverything : public TTransactionBase<THive> {
188
if (Self->CurrentConfig.HasWarmUpEnabled()) {
189
Self->WarmUp = Self->CurrentConfig.GetWarmUpEnabled();
190
} else {
191
- Self->WarmUp = Self->CurrentConfig.GetWarmUpEnabled() && !Self->AreWeRootHive();
+ if (IsBridgeMode(TActivationContext::AsActorContext())) {
192
+ Self->WarmUp = false;
193
+ } else {
194
+ Self->WarmUp = Self->CurrentConfig.GetWarmUpEnabled() && !Self->AreWeRootHive();
195
+ }
196
}
197
198
Self->DefaultResourceMetricsAggregates.MaximumCPU.SetWindowSize(TDuration::MilliSeconds(Self->GetMetricsWindowSize()));
0 commit comments