Skip to content

Commit

Permalink
Update to Quarkus 3.18.0 (#363)
Browse files Browse the repository at this point in the history
  • Loading branch information
radcortez authored Jan 23, 2025
1 parent ed19bde commit 746c348
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public QuarkusJobExecutor(Executor delegate, final ThreadPoolConfig threadPoolCo
return null;
}
return maxAsync + 1; // Adapt for the fact that JBeret requires one thread for coordination.
}).orElse(threadPoolConfig.maxThreads.orElse(Math.max(8 * ProcessorInfo.availableProcessors(), 200)));
}).orElse(threadPoolConfig.maxThreads().orElse(Math.max(8 * ProcessorInfo.availableProcessors(), 200)));
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<version.install.plugin>3.1.3</version.install.plugin>
<version.sundrio.plugin>0.200.0</version.sundrio.plugin>

<quarkus.version>3.17.6</quarkus.version>
<quarkus.version>3.18.0</quarkus.version>
<jakarta.batch-api.version>2.1.1</jakarta.batch-api.version>
<jberet.version>3.0.0.Final</jberet.version>
<jberet-rest.version>3.0.0.Final</jberet-rest.version>
Expand Down

0 comments on commit 746c348

Please sign in to comment.