summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFilitov Mikhail <[email protected]>2025-07-10 13:50:41 +0200
committerGitHub <[email protected]>2025-07-10 13:50:41 +0200
commit6e61d6058a51532b7fae1fa03aa3e6479e3dc5ba (patch)
tree63db9dd1ecc60f43666933265f3fca88d1ea96fb
parent8fbe607156734579c3523ea260743b6cbb258e82 (diff)
don't check actor system Send() result (#20923)
-rw-r--r--ydb/library/yql/dq/actors/spilling/channel_storage_actor.cpp2
-rw-r--r--ydb/library/yql/dq/actors/spilling/compute_storage_actor.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/ydb/library/yql/dq/actors/spilling/channel_storage_actor.cpp b/ydb/library/yql/dq/actors/spilling/channel_storage_actor.cpp
index 2c5813ed57a..c417bf5d5a7 100644
--- a/ydb/library/yql/dq/actors/spilling/channel_storage_actor.cpp
+++ b/ydb/library/yql/dq/actors/spilling/channel_storage_actor.cpp
@@ -88,7 +88,7 @@ protected:
}
void SendInternal(const TActorId& recipient, IEventBase* ev, TEventFlags flags = IEventHandle::FlagTrackDelivery) {
- if (!Send(recipient, ev, flags)) FailWithError("Event was not sent");
+ Send(recipient, ev, flags);
}
private:
diff --git a/ydb/library/yql/dq/actors/spilling/compute_storage_actor.cpp b/ydb/library/yql/dq/actors/spilling/compute_storage_actor.cpp
index e0c8b3c21cb..0874702fc9c 100644
--- a/ydb/library/yql/dq/actors/spilling/compute_storage_actor.cpp
+++ b/ydb/library/yql/dq/actors/spilling/compute_storage_actor.cpp
@@ -83,7 +83,7 @@ protected:
}
void SendInternal(const TActorId& recipient, IEventBase* ev, TEventFlags flags = IEventHandle::FlagTrackDelivery) {
- if (!Send(recipient, ev, flags)) FailWithError("Event was not sent");
+ Send(recipient, ev, flags);
}
private: