Skip to content

Commit

Permalink
fix tests with reboot
Browse files Browse the repository at this point in the history
  • Loading branch information
swalrus1 committed Oct 28, 2024
1 parent 828600d commit 039f629
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -676,6 +676,7 @@ std::vector<std::pair<ui32, ui64>> TestTiers(bool reboots, const std::vector<TSt
if (reboots) {
Cerr << "INTERMEDIATE REBOOT(" << i << ")" << Endl;
RebootTablet(runtime, TTestTxConfig::TxTablet0, sender);
NTxUT::RefreshTiering(runtime, sender);
}

// Read data after eviction
Expand Down
2 changes: 1 addition & 1 deletion ydb/core/tx/tiering/fetcher/watch.h
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ class TTieringWatcher: public TActorBootstrapped<TTieringWatcher> {
}

void Handle(NActors::TEvents::TEvUndelivered::TPtr& ev) {
AFL_CRIT(NKikimrServices::TX_TIERING)("error", "event_undelivered_to_scheme_cache")("reason", ev->Get()->Reason);
AFL_WARN(NKikimrServices::TX_TIERING)("error", "event_undelivered_to_scheme_cache")("reason", ev->Get()->Reason);
for (const TString& tieringRuleId : WatchedTieringRules) {
Send(Owner, new NTiers::TEvTieringRuleResolutionFailed(tieringRuleId, NTiers::TBaseEvObjectResolutionFailed::LOOKUP_ERROR));
}
Expand Down

0 comments on commit 039f629

Please sign in to comment.