Update jobChecker.js
All checks were successful
Build and push image / Build (push) Successful in 42s

This commit is contained in:
Jack 2025-03-06 21:22:54 +00:00
parent 964a1968a6
commit 8868e24665

View File

@ -40,12 +40,15 @@ var con = mysql.createConnection({
database: "wednesday_db"
});
console.log("waiting for wednesday!")
console.log("STARTED!")
con.connect(function(err) {
if (err) throw err;
//console.log("You are connected!");
console.log("connected waiting for wednesday!")
cron.schedule('0 0 * * *', function() {
console.log('connected waiting for wednesday!');
});
cron.schedule('0 0 * * WED', function() {
console.log('running a task every wed');
check();