recheck redis server
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
root
2024-08-30 11:58:53 +02:00
parent 96ec74529e
commit 4f06786d85

View File

@@ -82,16 +82,23 @@ function check_system() {
});
}
function check_redis() {
var url = 'scan.php?op=redis';
$.get(url, function(data){
console.log(data);
if (data=='OK') {
$("#redis").html('Redis server - OK');
start_system();
}
else {
$("#redis").html('Redis server is not available...');
setTimeout(check_redis, 1000);
}
});
}
check_redis();
//setTimeout(redirectToManage, 10000);