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

Commit 6f647d7

Browse files
fix(#651): fix incorrect assignment
the same variable was assigned twice accidentally
1 parent 92591c8 commit 6f647d7

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/GraphQLWebAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ public GraphQLConfiguration graphQLServletConfiguration(
316316
.asyncTimeout(asyncTimeout)
317317
.with(asyncTaskDecorator)
318318
.asyncCorePoolSize(asyncServletProperties.getThreads().getMin())
319-
.asyncCorePoolSize(asyncServletProperties.getThreads().getMax())
319+
.asyncMaxPoolSize(asyncServletProperties.getThreads().getMax())
320320
.with(asyncExecutor)
321321
.build();
322322
}

0 commit comments

Comments
 (0)