Skip to content

Commit

Permalink
#650 Flurl shouldn't dispose request message
Browse files Browse the repository at this point in the history
  • Loading branch information
Todd committed Sep 18, 2023
1 parent 69b3b1c commit 52e6f78
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Flurl.Http/FlurlClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ public async Task<IFlurlResponse> SendAsync(IFlurlRequest request, HttpCompletio
return await HandleExceptionAsync(call, ex, cancellationToken).ConfigureAwait(false);
}
finally {
reqMsg.Dispose();
cts?.Dispose();
call.EndedUtc = DateTime.UtcNow;
await RaiseEventAsync(settings.AfterCall, settings.AfterCallAsync, call).ConfigureAwait(false);
Expand Down

0 comments on commit 52e6f78

Please sign in to comment.