Skip to content

Commit 3d7d89d

Browse files
vanek021vanek021
and
vanek021
authored
* GenericActionPipelinePolicy - ConfigureAwait(false) for ProcessAsync method (#353)
Co-authored-by: vanek021 <[email protected]>
1 parent b0a487c commit 3d7d89d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Utility/GenericActionPipelinePolicy.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public override async ValueTask ProcessAsync(PipelineMessage message, IReadOnlyL
2828
_processMessageAction(message);
2929
if (currentIndex < pipeline.Count - 1)
3030
{
31-
await pipeline[currentIndex + 1].ProcessAsync(message, pipeline, currentIndex + 1);
31+
await pipeline[currentIndex + 1].ProcessAsync(message, pipeline, currentIndex + 1).ConfigureAwait(false);
3232
}
3333
}
3434
}

0 commit comments

Comments
 (0)