Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,10 @@ public override async Task<ODataBatchResponseItem> SendRequestAsync(
// - the ChangeSet is submitted
// - the responses are created and
// - the controller actions have returned
await Task.WhenAll(responseTasks).ConfigureAwait(false);
foreach (var responseTask in responseTasks)
{
await responseTask.ConfigureAwait(false);
}

var responses = new List<HttpResponseMessage>();
try
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,10 @@ public override async Task<ODataBatchResponseItem> SendRequestAsync(RequestDeleg
// - the ChangeSet is submitted
// - the responses are created and
// - the controller actions have returned
await Task.WhenAll(responseTasks).ConfigureAwait(false);
foreach (var responseTask in responseTasks)
{
await responseTask.ConfigureAwait(false);
}

var returnContexts = new List<HttpContext>();

Expand Down