From 8bacb053c9c553b66535b86ab8a29d0452bbb0f4 Mon Sep 17 00:00:00 2001 From: Tony Murray Date: Thu, 7 Sep 2017 03:28:03 -0500 Subject: [PATCH] fix: slower hardware can hit the schema update response timeout (#7296) Update the timeout from 40s to 90s. --- html/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/install.php b/html/install.php index a45052d205..942a5a612b 100644 --- a/html/install.php +++ b/html/install.php @@ -312,7 +312,7 @@ echo ""; 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", ""); };