Skip to content

Commit

Permalink
change from virtual to real threads
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Dec 6, 2024
1 parent 82a36ac commit 2cee375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/lucee/runtime/mvn/POM.java
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ private static TreeNode<POM> getDependencies(POM pom, boolean recursive, int lev
try {
List<POM> deps = pom.getDependencies();
if (deps != null && deps.size() > 0) {
executor = ThreadUtil.createExecutorService(deps.size(), true);
executor = ThreadUtil.createExecutorService(deps.size(), false);
List<Future<Pair<IOException, POM>>> futures = new ArrayList<>();
for (POM p: deps) {
if (!node.addChild(p)) continue;
Expand Down

0 comments on commit 2cee375

Please sign in to comment.