Skip to content

Commit

Permalink
Change return to remove warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jleiva-gap committed Sep 17, 2024
1 parent 25da572 commit ed2a67d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,7 @@ public EdFiApiSourceTotalCountProvider(ISourceEdFiApiClientProvider sourceEdFiAp

string requestUri =
$"{edFiApiClient.DataManagementApiSegment}{resourceUrl}?offset=0&limit=1&totalCount=true{changeWindowQueryStringParameters}";

return RequestHelpers.SendGetRequestAsync(edFiApiClient, resourceUrl, requestUri, ct).Result;
return await RequestHelpers.SendGetRequestAsync(edFiApiClient, resourceUrl, requestUri, ct);
}, new Context(), cancellationToken);

string responseContent = null;
Expand Down

0 comments on commit ed2a67d

Please sign in to comment.