Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit 72f45cd

Browse files
committed
fix: disable async mode by default
1 parent 3d0d97f commit 72f45cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graphql-spring-boot-autoconfigure/src/main/java/graphql/kickstart/autoconfigure/web/servlet/AsyncServletProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class AsyncServletProperties {
1212

1313
public static final Duration DEFAULT_TIMEOUT = Duration.ofSeconds(30);
1414

15-
private boolean enabled = true;
15+
private boolean enabled = false;
1616
/**
1717
* Asynchronous execution timeout. If a duration suffix is not specified, millisecond will be used.
1818
*/

0 commit comments

Comments
 (0)