Skip to content

Commit

Permalink
do not call complete, also not implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
0xF6 committed Jan 31, 2025
1 parent 3465176 commit cbe4bbd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Argon.Api/Features/Orleanse/Streams/ServerArgonStream.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ public Task OnErrorAsync(Exception ex)
public IAsyncEnumerator<T> GetAsyncEnumerator(CancellationToken ct = default)
=> throw new NotImplementedException($"Server stream cannot create async enumerator");

public async ValueTask DisposeAsync()
=> await stream.OnCompletedAsync();
public async ValueTask DisposeAsync() { }

public async ValueTask Fire(T ev)
{
Expand Down

0 comments on commit cbe4bbd

Please sign in to comment.