Code Monkey home page Code Monkey logo

Comments (5)

kamilmysliwiec avatar kamilmysliwiec commented on April 28, 2024

@jeffminsungkim can you take a look at this issue? It seems to be related to the CronExpression enum (and its pattern)

from schedule.

gvonhagel avatar gvonhagel commented on April 28, 2024

@kamilmysliwiec For the record, not using CronExpression but just using something like */25 * * * * * causes the same thing to happen. Just with that it'll run 25 - 25 - 10.

from schedule.

jeffminsungkim avatar jeffminsungkim commented on April 28, 2024

@gvonhagel

@Injectable()
export class AppService {
  @Cron(CronExpression.EVERY_45_SECONDS)
  getHello(): void {
    console.log('Current time:', moment().format('h:mm:ss a'));
  }
}

// Current time: 4:42:45 pm
// Current time: 4:43:00 pm
// Current time: 4:43:45 pm
// Current time: 4:44:00 pm
// Current time: 4:44:45 pm
// Current time: 4:45:00 pm

@Injectable()
export class AppService {
  @Cron('*/35 * * * * *')
  getHello(): void {
    console.log('Current time:', moment().format('h:mm:ss a'));
  }
}

// Current time: 5:12:35 pm
// Current time: 5:13:00 pm
// Current time: 5:13:35 pm
// Current time: 5:14:00 pm

I'll take a look at the problem.

from schedule.

jeffminsungkim avatar jeffminsungkim commented on April 28, 2024

@gvonhagel @kamilmysliwiec
It seems like cron has an issue.
kelektiv/node-cron#489 (comment)

from schedule.

kamilmysliwiec avatar kamilmysliwiec commented on April 28, 2024

Let's track this here: kelektiv/node-cron#489 (comment)

@jeffminsungkim removed unsupported cron expressions for now.

from schedule.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.