Skip to content

Commit d746610

Browse files
committed
Bumped max chunksize to 20.
1 parent b4086e4 commit d746610

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/deploy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ command.handler = async function(argv) {
7777

7878
// Chunk the files array into smaller pieces to handle
7979
// concurrency with the api requests.
80-
if (argv['chunk-size'] > 10) {
81-
argv['chunk-size'] = 10;
80+
if (argv['chunk-size'] > 20) {
81+
argv['chunk-size'] = 20;
8282
}
8383
files = chunk(files, argv['chunk-size']);
8484

0 commit comments

Comments
 (0)