From 9efecdd0e219676ba7fd7b26dd4b3a0dc21b4e2c Mon Sep 17 00:00:00 2001 From: Jacob Alber Date: Tue, 31 Mar 2026 09:30:39 -0400 Subject: [PATCH] fix: Remove Timeout from InputWait in StreamingRunEventStream --- .../Execution/StreamingRunEventStream.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StreamingRunEventStream.cs b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StreamingRunEventStream.cs index 6278f3446b..8737bc0f72 100644 --- a/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StreamingRunEventStream.cs +++ b/dotnet/src/Microsoft.Agents.AI.Workflows/Execution/StreamingRunEventStream.cs @@ -123,7 +123,7 @@ internal sealed class StreamingRunEventStream : IRunEventStream // Wait for next input from the consumer // Works for both Idle (no work) and PendingRequests (waiting for responses) - await this._inputWaiter.WaitForInputAsync(TimeSpan.FromSeconds(1), linkedSource.Token).ConfigureAwait(false); + await this._inputWaiter.WaitForInputAsync(linkedSource.Token).ConfigureAwait(false); // When signaled, resume running this._runStatus = RunStatus.Running;