Skip to content

Commit

Permalink
Merge pull request #96 from pur3extreme/patch-1
Browse files Browse the repository at this point in the history
Update Helpers.cs
  • Loading branch information
acupofjose authored May 16, 2024
2 parents d0de337 + 11360c6 commit 228cd7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Postgrest/Helpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public static async Task<BaseResponse> MakeRequest(ClientOptions clientOptions,
}
}

var response = await Client.SendAsync(requestMessage, cancellationToken);
using var response = await Client.SendAsync(requestMessage, cancellationToken).ConfigureAwait(false);
var content = await response.Content.ReadAsStringAsync();

if (response.IsSuccessStatusCode)
Expand Down

0 comments on commit 228cd7b

Please sign in to comment.