From 2e9cd31b7ed6c7e7ed2929d0dfb7864f83b4a722 Mon Sep 17 00:00:00 2001 From: Vadim Averin Date: Thu, 23 Jan 2025 20:25:04 +0300 Subject: [PATCH] Fix codestyle --- ydb/core/tx/columnshard/blobs_action/bs/gc_actor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ydb/core/tx/columnshard/blobs_action/bs/gc_actor.cpp b/ydb/core/tx/columnshard/blobs_action/bs/gc_actor.cpp index 791c60e9374d..bea13dc18bbb 100644 --- a/ydb/core/tx/columnshard/blobs_action/bs/gc_actor.cpp +++ b/ydb/core/tx/columnshard/blobs_action/bs/gc_actor.cpp @@ -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); }