Update 'server.js'
This commit is contained in:
parent
ff92ef577b
commit
37b544d280
13
server.js
13
server.js
|
@ -52,7 +52,18 @@ setInterval(function () {
|
|||
console.log("end");
|
||||
});
|
||||
});
|
||||
}, 60000);
|
||||
}, 60000);
|
||||
|
||||
setInterval(function () {
|
||||
http.get("http://localhost/api/check-logs", res => {
|
||||
res.on("data", d => {
|
||||
|
||||
});
|
||||
res.on("end", () => {
|
||||
console.log("end");
|
||||
});
|
||||
});
|
||||
}, 60000);
|
||||
|
||||
request.get({
|
||||
url: "http://localhost/api/re-gen-feature",
|
||||
|
|
Loading…
Reference in New Issue
Block a user