Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaiola authored Oct 25, 2023
1 parent fa9af77 commit cc8547c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ async function processAPIRequest (source, id, filename, index, query) {
// console.log('http://127.0.0.1:' + relaxPort + '/relax/api/' + urlPath)
// logger.info(urlPath)
// logger.info('http://127.0.0.1:' + relaxPort + '/relax/api/' + urlPath)
await page.goto('http://127.0.0.1:' + relaxPort + '/relax/api/' + urlPath, { timeout: 60000 })
await page.goto('http://127.0.0.1:' + relaxPort + '/relax/api/' + urlPath, {
// 5 min
timeout: 300000
})

let json = await page.evaluate(() => {
const value1 = document.getElementById('success').firstChild.nodeValue
Expand Down

0 comments on commit cc8547c

Please sign in to comment.