Skip to content

Commit 80ed0fe

Browse files
author
Jake Champion
committed
increase body chunk timeout
1 parent a12a1d3 commit 80ed0fe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27969,7 +27969,7 @@ const compareDownstreamResponse = async (configResponse, actualResponse) => {
2796927969
const downstreamTimeout = setTimeout(() => {
2797027970
console.error(`[DownstreamResponse: Body Chunk Timeout]`);
2797127971
process.exit(1);
27972-
}, 10 * 1000);
27972+
}, 30 * 1000);
2797327973
for await (const chunk of downstreamBody) {
2797427974
const chunkString = chunk.toString('utf8');
2797527975

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

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

integration-tests/js-compute/compare-downstream-response.js

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

0 commit comments

Comments
 (0)