Skip to content

Commit 80af0e2

Browse files
committed
Increase matrix chunk size
1 parent 0268eff commit 80af0e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

issue-bot/src/Console/DownloadCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
128128
if (count($phpVersionHashes) === 0) {
129129
continue;
130130
}
131-
$chunkSize = (int) ceil(count($phpVersionHashes) / 18);
131+
$chunkSize = (int) ceil(count($phpVersionHashes) / 12);
132132
if ($chunkSize < 1) {
133133
throw new Exception('Chunk size less than 1');
134134
}

0 commit comments

Comments
 (0)