fix: disable `tasksStealingOnBackPressure` by default
[poolifier.git] / src / pools / utils.ts
index b7b38ac4a874f279f316929a80514f306b60390a..df9c256e95390d0731b730ae6726678d5bcbdfb7 100644 (file)
@@ -43,7 +43,7 @@ export const getDefaultTasksQueueOptions = (
     size: Math.pow(poolMaxSize, 2),
     concurrency: 1,
     taskStealing: true,
-    tasksStealingOnBackPressure: true,
+    tasksStealingOnBackPressure: false,
     tasksFinishedTimeout: 2000
   }
 }