Skip to content

Commit 0371781

Browse files
committed
build: reduce batch size to try to reduce flakiness
Currently, we are getting a lot of flakes due to `accept4 failed 110` error, this commit tries to reduce this by reducing the batching
1 parent 0c0f89e commit 0371781

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/windows-testing/convert-symlinks.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ try {
133133
// Re-link symlinks to work inside Windows.
134134
// This is done in batches to avoid flakiness due to WSL
135135
// See: https://github.com/microsoft/WSL/issues/8677.
136-
const batchSize = 75;
136+
const batchSize = 50;
137137
for (let i = 0; i < relinkFns.length; i += batchSize) {
138138
await Promise.all(relinkFns.slice(i, i + batchSize).map((fn) => fn()));
139139
}

0 commit comments

Comments
 (0)