Skip to content

Commit

Permalink
intervalls changed
Browse files Browse the repository at this point in the history
  • Loading branch information
clownclown-tech committed Dec 2, 2024
1 parent 81c0eb9 commit 71a3ab9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@ const https = require('https');
setInterval(() => {
console.log("ping");
https.get("https://tetris-node.fly.dev");
}, 1 * 60 * 1000);
}, 3 * 60 * 1000);

setInterval(() => {
console.log("ping2");
https.get("https://rent-a-bike.fly.dev");
}, 3 * 60 * 1000);
}, 4 * 60 * 1000);

setInterval(() => {
console.log("ping3");
https.get("https://plain-scanner.fly.dev");
}, 3 * 60 * 1000);
}, 4 * 60 * 1000);


setInterval(() => {
console.log("ping3");
https.get("https://medicalappointmentapp.fly.dev");
}, 2 * 60 * 1000);
// setInterval(() => {
// console.log("ping3");
// https.get("https://medicalappointmentapp.fly.dev");
// }, 2 * 60 * 1000);



Expand Down

0 comments on commit 71a3ab9

Please sign in to comment.