increase fetch timeout to 60 seconds for now

Fixes #29
This commit is contained in:
Nolan Lawson 2018-04-09 18:31:25 -07:00
parent 7ae3212c55
commit 5bb38d4126
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
const TIMEOUT = process.browser ? 20000 : 60000
const TIMEOUT = process.browser ? 60000 : 120000
function fetchWithTimeout (url, options) {
return new Promise((resolve, reject) => {