Skip to content

Commit

Permalink
Merge pull request #136 from TeamSparker/feature/#102
Browse files Browse the repository at this point in the history
fix: cron 표현식 스페이스바 제거
  • Loading branch information
xxeol2 authored Jan 19, 2022
2 parents 62756ad + ea86850 commit 56f98b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/scheduler/scheduler.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const schedule = require('node-schedule');
const funcs = require('./funcs.js');

const job = schedule.scheduleJob('* * 15 * * *', function() {
const job = schedule.scheduleJob('0 0 0 15 * * *', function() {
funcs.checkLife();
});

Expand Down

0 comments on commit 56f98b7

Please sign in to comment.