GithubHelp home page GithubHelp logo

Comments (7)

maxpeterson avatar maxpeterson commented on April 26, 2024 9

FYI: I found that adding a name fixed my duplicates

  @Cron('*/10 * * * * *')
  async test() {
    this.logger.log('Test unnamed');
  }

  @Cron('*/10 * * * * *', { name: 'test-named' })
  async testNamed() {
    this.logger.log('Test named');
  }

=>

[Nest] 9525   - 13/04/2021, 17:30:39   [NestApplication] Nest application successfully started
[Nest] 9525   - 13/04/2021, 17:30:40   [ScanService] Test unnamed
[Nest] 9525   - 13/04/2021, 17:30:40   [ScanService] Test named
[Nest] 9525   - 13/04/2021, 17:30:40   [ScanService] Test unnamed
[Nest] 9525   - 13/04/2021, 17:30:50   [ScanService] Test named
[Nest] 9525   - 13/04/2021, 17:30:50   [ScanService] Test unnamed
[Nest] 9525   - 13/04/2021, 17:30:50   [ScanService] Test unnamed
[Nest] 9525   - 13/04/2021, 17:31:00   [ScanService] Test unnamed
[Nest] 9525   - 13/04/2021, 17:31:00   [ScanService] Test unnamed
[Nest] 9525   - 13/04/2021, 17:31:00   [ScanService] Test named
[Nest] 9525   - 13/04/2021, 17:31:10   [ScanService] Test unnamed
[Nest] 9525   - 13/04/2021, 17:31:10   [ScanService] Test named
[Nest] 9525   - 13/04/2021, 17:31:10   [ScanService] Test unnamed

The order of the log entries makes it a bit confusing, but if you look at the time stamps you can see it calls Test named once every 10 seconds but Test unnamed twice every 10 seconds

from schedule.

ronatory avatar ronatory commented on April 26, 2024 3

Also it seems to be that if this is an underlying issue in https://github.com/kelektiv/node-cron then this won't be fixed quite soon since the project isn't really maintained anymore. See here kelektiv/node-cron#578

from schedule.

kamilmysliwiec avatar kamilmysliwiec commented on April 26, 2024

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

from schedule.

ronatory avatar ronatory commented on April 26, 2024

For me adding a name unfortunately doesn't fix the issue. I still get duplicates

from schedule.

danielnadar75 avatar danielnadar75 commented on April 26, 2024

@maxpeterson Thanks a lot man, it seemed silly at first but I did add a name and it solved the issue and it's running just once now. Thanks a lot I've been stuck with this from last couple of hours.

from schedule.

joshkrab avatar joshkrab commented on April 26, 2024

@maxpeterson Yes, thanks a lot. It worked for me too :)
Just added a name: @Cron('10 * * * * *', { name: 'redis' })

from schedule.

xegulon avatar xegulon commented on April 26, 2024

@kamilmysliwiec then the bug is still present in @nestjs/schedule, isn't it?

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.