From daeb986d50c4e4b271941842e3455ed51a950685 Mon Sep 17 00:00:00 2001 From: Floho <26029550+floh0@users.noreply.github.com> Date: Fri, 8 Sep 2023 14:09:41 +0200 Subject: [PATCH] fix outdated default value of minThreads (#2898) --- _overviews/core/futures.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/core/futures.md b/_overviews/core/futures.md index aac3aa4b4..9f01a4371 100644 --- a/_overviews/core/futures.md +++ b/_overviews/core/futures.md @@ -101,7 +101,7 @@ By default, the `ExecutionContext.global` sets the parallelism level of its unde ([Runtime.availableProcessors](https://docs.oracle.com/javase/7/docs/api/java/lang/Runtime.html#availableProcessors%28%29)). This configuration can be overridden by setting one (or more) of the following VM attributes: - * scala.concurrent.context.minThreads - defaults to `Runtime.availableProcessors` + * scala.concurrent.context.minThreads - defaults to `1` * scala.concurrent.context.numThreads - can be a number or a multiplier (N) in the form 'xN' ; defaults to `Runtime.availableProcessors` * scala.concurrent.context.maxThreads - defaults to `Runtime.availableProcessors`