Skip to content

Commit

Permalink
Update help parallel uploads (#7785)
Browse files Browse the repository at this point in the history
* update help message

* minor changes
  • Loading branch information
czoido committed Oct 1, 2020
1 parent c09563b commit 30ce7dd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions conans/client/command.py
Expand Up @@ -1423,8 +1423,10 @@ def upload(self, *args):
parser.add_argument("-j", "--json", default=None, action=OnceArgument,
help='json file path where the upload information will be written to')
parser.add_argument("--parallel", action='store_true', default=False,
help='Upload files in parallel using multiple threads '
'The default number of launched threads is 8')
help='Upload files in parallel using multiple threads. '
'The default number of launched threads is set to the value of '
'cpu_count and can be configured using the CONAN_CPU_COUNT '
'environment variable or defining cpu_count in conan.conf')

args = parser.parse_args(*args)

Expand Down

0 comments on commit 30ce7dd

Please sign in to comment.