Skip to content

Commit 9c9a043

Browse files
committed
Merge branch 'master' into native-dispatch-strategy
2 parents d34ec29 + e05a02f commit 9c9a043

File tree

6 files changed

+1888
-62
lines changed

6 files changed

+1888
-62
lines changed

src/main/java/graphql/GraphQL.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ public CompletableFuture<ExecutionResult> executeAsync(UnaryOperator<ExecutionIn
404404
public CompletableFuture<ExecutionResult> executeAsync(ExecutionInput executionInput) {
405405
ExecutionInput executionInputWithId = ensureInputHasId(executionInput);
406406

407-
CompletableFuture<InstrumentationState> instrumentationStateCF = instrumentation.createStateAsync(new InstrumentationCreateStateParameters(this.graphQLSchema, executionInput));
407+
CompletableFuture<InstrumentationState> instrumentationStateCF = instrumentation.createStateAsync(new InstrumentationCreateStateParameters(this.graphQLSchema, executionInputWithId));
408408
return Async.orNullCompletedFuture(instrumentationStateCF).thenCompose(instrumentationState -> {
409409
try {
410410
InstrumentationExecutionParameters inputInstrumentationParameters = new InstrumentationExecutionParameters(executionInputWithId, this.graphQLSchema, instrumentationState);

0 commit comments

Comments
 (0)