fix: slower hardware can hit the schema update response timeout (#7296)

Update the timeout from 40s to 90s.
This commit is contained in:
Tony Murray 2017-09-07 03:28:03 -05:00 committed by Neil Lathwood
parent dc110d2d97
commit 8bacb053c9

View File

@ -312,7 +312,7 @@ echo "</td></tr>";
output.innerHTML = e.currentTarget.responseText;
output.scrollTop = output.scrollHeight - output.clientHeight; // scrolls the output area
};
xhr.timeout = 40000; // if no response for 40s, allow the user to retry
xhr.timeout = 90000; // if no response for 90s, allow the user to retry
xhr.ontimeout = function (e) {
$("#retry-btn").css("display", "");
};