Skip to content

Commit

Permalink
Merge pull request #182 from jeffminsungkim/jeffminsungkim/fix-cron-e…
Browse files Browse the repository at this point in the history
…xpression

fix: remove unsupported cron expressions
  • Loading branch information
kamilmysliwiec authored May 14, 2020
2 parents 53cab99 + be93ed8 commit 4f57816
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/enums/cron-expression.enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,11 @@ export enum CronExpression {
EVERY_SECOND = '* * * * * *',
EVERY_5_SECONDS = '*/5 * * * * *',
EVERY_10_SECONDS = '*/10 * * * * *',
EVERY_15_SECONDS = '*/15 * * * * *',
EVERY_30_SECONDS = '*/30 * * * * *',
EVERY_45_SECONDS = '*/45 * * * * *',
EVERY_MINUTE = '*/1 * * * *',
EVERY_5_MINUTES = '0 */5 * * * *',
EVERY_10_MINUTES = '0 */10 * * * *',
EVERY_15_MINUTES = '0 */15 * * * *',
EVERY_30_MINUTES = '0 */30 * * * *',
EVERY_45_MINUTES = '0 */45 * * * *',
EVERY_HOUR = '0 0-23/1 * * *',
EVERY_2_HOURS = '0 0-23/2 * * *',
EVERY_3_HOURS = '0 0-23/3 * * *',
Expand Down

0 comments on commit 4f57816

Please sign in to comment.