Skip to content

Commit

Permalink
SmallRye GraphQL: make blocking execute unordered
Browse files Browse the repository at this point in the history
  • Loading branch information
Ladicek committed Aug 12, 2024
1 parent 00b31c8 commit b73361a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ public static boolean nonBlockingShouldExecuteBlocking(Operation operation, Cont
@SuppressWarnings("unchecked")
public static void runBlocking(Context vc, Callable<Object> contextualCallable, Promise result) {
// Here call blocking with context
vc.executeBlocking(contextualCallable).onComplete(result);
vc.executeBlocking(contextualCallable, false).onComplete(result);
}
}

0 comments on commit b73361a

Please sign in to comment.