Skip to content

Commit

Permalink
increase timeout time
Browse files Browse the repository at this point in the history
  • Loading branch information
vdelacruzb committed Sep 25, 2024
1 parent 9f2799f commit 8413ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clouds/bigquery/common/test-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const BQ_DATASET = process.env.BQ_DATASET;
const client = new BigQuery({ projectId: `${BQ_PROJECT}` });

async function runQuery (query, options) {
options = Object.assign({}, { timeoutMs : 600000 }, options);
options = Object.assign({}, { timeoutMs : 1200000 }, options);
query = replaceBQPrefix(query);
const [rows] = await client.query(query, options);
return rows;
Expand Down

0 comments on commit 8413ac4

Please sign in to comment.