fix: Remove Timeout from InputWait in StreamingRunEventStream

This commit is contained in:
Jacob Alber
2026-03-31 09:30:39 -04:00
Unverified
parent 0f81c277d9
commit 9efecdd0e2
@@ -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;