Skip to content

Commit 4432f71

Browse files
Fix race condition in RequestExecutor creation (#8674)
1 parent ec8c418 commit 4432f71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/HotChocolate/Core/src/Execution.Abstractions/Execution/RequestExecutorProxy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ public async ValueTask<IRequestExecutor> GetExecutorAsync(
189189
.GetExecutorAsync(_schemaName, cancellationToken)
190190
.ConfigureAwait(false);
191191

192-
CurrentExecutor = executor;
193192
OnConfigureRequestExecutor(executor, null);
193+
CurrentExecutor = executor;
194194
}
195195
else
196196
{

0 commit comments

Comments
 (0)