From 29a93585eaad47d8871f40f614e3d56dbd6f3d40 Mon Sep 17 00:00:00 2001 From: shaoym <1447247302@qq.com> Date: Tue, 3 Feb 2026 16:12:33 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=96=B9=E6=B3=95=E9=87=8D?= =?UTF-8?q?=E8=BD=BD=E5=AF=BC=E8=87=B4=E7=9A=84=E8=B7=A8Actor=E5=BC=82?= =?UTF-8?q?=E6=AD=A5=E8=B0=83=E7=94=A8=E7=AD=89=E5=BE=85=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Geek.Server.Core/Actors/Actor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Geek.Server.Core/Actors/Actor.cs b/Geek.Server.Core/Actors/Actor.cs index 3484e2cb..d52dda23 100644 --- a/Geek.Server.Core/Actors/Actor.cs +++ b/Geek.Server.Core/Actors/Actor.cs @@ -132,7 +132,7 @@ public Task SendAsync(Func work, int timeout = TIME_OUT) public Task SendAsync(Func work, int timeout = TIME_OUT) { - return WorkerActor.SendAsync(work, timeout); + return WorkerActor.SendAsync(work, timeout, true); } public Task SendAsyncWithoutCheck(Func work, int timeout = TIME_OUT)