From bfe3f209b9e1f6b52b884a5999d0207b52290423 Mon Sep 17 00:00:00 2001 From: Alvin <10202306+bluexo@users.noreply.github.com> Date: Sat, 23 Dec 2023 07:13:18 +0800 Subject: [PATCH] Update IAsyncObserver.cs --- src/Orleans.Streaming/Core/IAsyncObserver.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Orleans.Streaming/Core/IAsyncObserver.cs b/src/Orleans.Streaming/Core/IAsyncObserver.cs index 96aafcb726..795bf9bf3f 100644 --- a/src/Orleans.Streaming/Core/IAsyncObserver.cs +++ b/src/Orleans.Streaming/Core/IAsyncObserver.cs @@ -56,6 +56,6 @@ public interface IAsyncObserver /// /// An Exception that describes the error that occurred on the stream. /// A Task that is completed when the close has been accepted. - Task OnErrorAsync(Exception ex) => throw ex; + Task OnErrorAsync(Exception ex); } }