Commit 7671a1d5 authored by Ozzie Isaacs's avatar Ozzie Isaacs

Fix errormessage after update

parent bd6b5ac8
...@@ -261,6 +261,7 @@ $(function() { ...@@ -261,6 +261,7 @@ $(function() {
} }
function updateTimer() { function updateTimer() {
var no_response = 0;
$.ajax({ $.ajax({
dataType: "json", dataType: "json",
url: getPath() + "/get_updater_status", url: getPath() + "/get_updater_status",
...@@ -271,8 +272,12 @@ $(function() { ...@@ -271,8 +272,12 @@ $(function() {
} }
}, },
error: function error() { error: function error() {
$("#DialogContent").html(updateText[11]); // Server has to restart in 60 Sek. otherwise output error message
cleanUp(); no_response += 1;
if (no_response > 30) {
$("#DialogContent").html(updateText[11]);
cleanUp();
}
}, },
timeout: 2000 timeout: 2000
}); });
...@@ -447,7 +452,7 @@ $(function() { ...@@ -447,7 +452,7 @@ $(function() {
$("#spinner2").show(); $("#spinner2").show();
$.ajax({ $.ajax({
dataType: "json", dataType: "json",
url: window.location.pathname + "/../../shutdown", url: getPath() + "/shutdown",
data: {"parameter":2}, data: {"parameter":2},
success: function success(data) { success: function success(data) {
$("#spinner2").hide(); $("#spinner2").hide();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment