Skip to content

Commit

Permalink
Fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
sliekens committed Sep 11, 2023
1 parent ee27f65 commit aa82b2b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public IAsyncEnumerable<Recipe> GetRecipesBulk(
var producer = BulkQuery.Create<int, Recipe>(
async (chunk, ct) =>
{
var response = await GetRecipesByIds(recipeIds, missingMemberBehavior, ct)
var response = await GetRecipesByIds(chunk, missingMemberBehavior, ct)
.ConfigureAwait(false);
return response.Value;
}
Expand Down

0 comments on commit aa82b2b

Please sign in to comment.