Skip to content

Commit

Permalink
fix(process-files): default value of batchsize is too big (DEV-2573) #…
Browse files Browse the repository at this point in the history
  • Loading branch information
jnussbaum committed Aug 24, 2023
1 parent d6c8110 commit b1775a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dsp_tools/cli.py
Expand Up @@ -139,7 +139,7 @@ def _make_parser(
)
parser_process_files.add_argument("--nthreads", type=int, default=None, help="number of threads to use")
parser_process_files.add_argument(
"--batchsize", type=int, default=5000, help="number of files to process before Python exits"
"--batchsize", type=int, default=3000, help="number of files to process before Python exits"
)
parser_process_files.add_argument("xml_file", help="path to XML file containing the data")

Expand Down

0 comments on commit b1775a9

Please sign in to comment.