Skip to content

Commit c5d16f6

Browse files
fix exception processing (#11728)
1 parent 59d285f commit c5d16f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ydb/core/kqp/compute_actor/kqp_scan_fetcher_actor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ std::unique_ptr<NKikimr::TEvDataShard::TEvKqpScan> TKqpScanFetcherActor::BuildEv
472472
return ev;
473473
}
474474

475-
void TKqpScanFetcherActor::ProcessPendingScanDataItem(TEvKqpCompute::TEvScanData::TPtr& ev, const TInstant& enqueuedAt) noexcept {
475+
void TKqpScanFetcherActor::ProcessPendingScanDataItem(TEvKqpCompute::TEvScanData::TPtr& ev, const TInstant& enqueuedAt) {
476476
auto& msg = *ev->Get();
477477

478478
auto state = InFlightShards.GetShardStateByActorId(ev->Sender);

ydb/core/kqp/compute_actor/kqp_scan_fetcher_actor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class TKqpScanFetcherActor: public NActors::TActorBootstrapped<TKqpScanFetcherAc
118118

119119
void HandleExecute(TEvKqpCompute::TEvScanData::TPtr& ev);
120120

121-
void ProcessPendingScanDataItem(TEvKqpCompute::TEvScanData::TPtr& ev, const TInstant& enqueuedAt) noexcept;
121+
void ProcessPendingScanDataItem(TEvKqpCompute::TEvScanData::TPtr& ev, const TInstant& enqueuedAt);
122122

123123
void ProcessScanData();
124124

0 commit comments

Comments
 (0)