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

Commit 4d372b1

Browse files
authored
Merge pull request #658 from BlasiusSecundus/feature/fix-async-pool-size-setting
fix(#651): fix incorrect assignment
2 parents 9e55129 + 6f647d7 commit 4d372b1

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)