Changed help message of --num-worker-threads flag

This commit is contained in:
danielsagi
2022-05-07 10:22:17 +03:00
parent 6c4ad4f6fd
commit 585b490f19
+7 -4
View File
@@ -133,10 +133,13 @@ def parser_add_arguments(parser):
parser.add_argument("--network-timeout", type=float, default=5.0, help="network operations timeout")
parser.add_argument("--num-worker-threads", type=int, default=800,
help="In some environments the default thread count of 800 is too much. "
"This crashes the process when trying to open more threads."
"In that case feel free to try a lower number, like 400 for example.")
parser.add_argument(
"--num-worker-threads",
type=int,
default=800,
help="In some environments the default thread count (800) can cause the process to crash. "
"In the case of a crash try lowering the thread count",
)
def parse_args(add_args_hook):