From 1ae65fac8a69ee58b4a33fb8d6c70ab4cd6b3938 Mon Sep 17 00:00:00 2001 From: Tashrif Billah <35086881+tashrifbillah@users.noreply.github.com> Date: Fri, 21 Jul 2023 11:16:02 -0400 Subject: [PATCH] note default values of -wt and -bc in help message --- NDATools/clientscripts/vtcmd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NDATools/clientscripts/vtcmd.py b/NDATools/clientscripts/vtcmd.py index 68c57ce..60aa29e 100644 --- a/NDATools/clientscripts/vtcmd.py +++ b/NDATools/clientscripts/vtcmd.py @@ -86,10 +86,10 @@ def parse_args(): help='Flag whether to additionally download validation results in JSON format.') parser.add_argument('-wt', '--workerThreads', metavar='', type=int, action='store', - help='Number of worker threads') + help='Number of worker threads, default is multiprocessing.cpu_count()-1') parser.add_argument('-bc', '--batch', metavar='', type=int, action='store', - help='Batch size') + help='Batch size, default is 10000') parser.add_argument('--hideProgress', action='store_true', help='Hides upload/processing progress')