Skip to content

Commit d5b89b6

Browse files
authored
fix CI flaking by increasing body chunk timeout (#45)
1 parent 1c9362f commit d5b89b6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/actions/compute-sdk-test/dist/compute-test-worker.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4435,7 +4435,7 @@ const compareDownstreamResponse = async (configResponse, actualResponse) => {
44354435
const downstreamTimeout = setTimeout(() => {
44364436
console.error(`[DownstreamResponse: Body Chunk Timeout]`);
44374437
process.exit(1);
4438-
}, 10 * 1000);
4438+
}, 30 * 1000);
44394439
for await (const chunk of downstreamBody) {
44404440
const chunkString = chunk.toString('utf8');
44414441

@@ -4814,4 +4814,4 @@ Comlink.expose(ComputeTestWorker, nodeEndpoint(parentPort));
48144814

48154815
module.exports = __webpack_exports__;
48164816
/******/ })()
4817-
;
4817+
;

.github/actions/compute-sdk-test/dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30374,7 +30374,7 @@ const compareDownstreamResponse = async (configResponse, actualResponse) => {
3037430374
const downstreamTimeout = setTimeout(() => {
3037530375
console.error(`[DownstreamResponse: Body Chunk Timeout]`);
3037630376
process.exit(1);
30377-
}, 10 * 1000);
30377+
}, 30 * 1000);
3037830378
for await (const chunk of downstreamBody) {
3037930379
const chunkString = chunk.toString('utf8');
3038030380

@@ -31317,4 +31317,4 @@ mainAsyncTask().then(() => {
3131731317

3131831318
module.exports = __webpack_exports__;
3131931319
/******/ })()
31320-
;
31320+
;

.github/actions/compute-sdk-test/src/compare-downstream-response.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const compareDownstreamResponse = async (configResponse, actualResponse) => {
3333
const downstreamTimeout = setTimeout(() => {
3434
console.error(`[DownstreamResponse: Body Chunk Timeout]`);
3535
process.exit(1);
36-
}, 10 * 1000);
36+
}, 30 * 1000);
3737
for await (const chunk of downstreamBody) {
3838
const chunkString = chunk.toString('utf8');
3939

0 commit comments

Comments
 (0)