Skip to content
Merged
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
* GenericActionPipelinePolicy - ConfigureAwait(false) for ProcessAsyn…
…c method
  • Loading branch information
vanek021 committed Feb 19, 2025
commit 4af1f6f57751c9a3d9d1b387722a2b9152ddd940
2 changes: 1 addition & 1 deletion src/Utility/GenericActionPipelinePolicy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public override async ValueTask ProcessAsync(PipelineMessage message, IReadOnlyL
_processMessageAction(message);
if (currentIndex < pipeline.Count - 1)
{
await pipeline[currentIndex + 1].ProcessAsync(message, pipeline, currentIndex + 1);
await pipeline[currentIndex + 1].ProcessAsync(message, pipeline, currentIndex + 1).ConfigureAwait(false);
}
}
}