Skip to content

Commit

Permalink
Fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
avevad committed Jan 23, 2025
1 parent eb5b647 commit 2e9cd31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ydb/core/tx/columnshard/blobs_action/bs/gc_actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ void TGarbageCollectionActor::Handle(TEvBlobStorage::TEvCollectGarbageResult::TP
CheckFinished();
} else {
ACFL_ERROR()("event", "GC_ERROR")("details", ev->Get()->Print(true));
if (auto gc_ev = GCTask->BuildRequest(TBlobAddress(ev->Cookie, ev->Get()->Channel))) {
SendToBSProxy(NActors::TActivationContext::AsActorContext(), ev->Cookie, gc_ev.release(), ev->Cookie);
if (auto gcEvent = GCTask->BuildRequest(TBlobAddress(ev->Cookie, ev->Get()->Channel))) {
SendToBSProxy(NActors::TActivationContext::AsActorContext(), ev->Cookie, gcEvent.release(), ev->Cookie);
} else {
Become(&TGarbageCollectionActor::StateDying);
}
Expand Down

0 comments on commit 2e9cd31

Please sign in to comment.