mirror of
https://github.com/curl/curl.git
synced 2026-08-25 14:33:44 +03:00
scorecard: fix argument handling when count and parallel are both 1
Closes #22605
This commit is contained in:
parent
0c22fcffe3
commit
722362d87b
1 changed files with 1 additions and 1 deletions
|
|
@ -445,7 +445,7 @@ class ScoreRunner:
|
|||
nsamples = meta['samples']
|
||||
max_parallel = self._download_parallel if self._download_parallel > 0 else count
|
||||
cols = ['size']
|
||||
if not self._download_parallel:
|
||||
if not self._download_parallel or count == 1:
|
||||
cols.append('single')
|
||||
if count > 1:
|
||||
cols.append(f'serial({count})')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue