Skip to content

Commit 02e25aa

Browse files
committed
Revert "reduce minimum AsyncHandler pool size to 1"
This reverts commit 4ef125ea5a5c6f10ff483c700818052b22822fd8.
1 parent 0a176b9 commit 02e25aa

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/AsyncHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ public final void execute(PythonContext context) {
143143
}
144144
}
145145

146-
private final ScheduledExecutorService executorService = Executors.newScheduledThreadPool(1, runnable -> {
146+
private final ScheduledExecutorService executorService = Executors.newScheduledThreadPool(6, runnable -> {
147147
Thread t = Executors.defaultThreadFactory().newThread(runnable);
148148
t.setDaemon(true);
149149
return t;

0 commit comments

Comments
 (0)