Giter Club home page Giter Club logo

Comments (5)

viniciuschiele avatar viniciuschiele commented on July 19, 2024

During next week I will try to sort it out, it is not so easy because APSchduler expects a TriggerBase instance in the trigger parameter when the job is updated.

For now a workaround you could do is removing and adding the job again.

from flask-apscheduler.

viniciuschiele avatar viniciuschiele commented on July 19, 2024

I just released a new version.

Let me know if you find any other issue.

from flask-apscheduler.

aviweit avatar aviweit commented on July 19, 2024

Thanks. It seems that next_run_time does not get updated on start_date changes. It seems that next_run_time should be starting from at least start_date (i.e 2017-12-21)

curl -v H "Accept: application/json" -H "Content-type: application/json" -X POST -d '{"func": "__main__:job1", "id": "4444", "name": "My job", "args": ["1", "5"], "trigger": "cron", "minute": "*/1", "start_date": "2017-12-19"}' http://<service IP>:5000/scheduler/jobs

{
"id": "4444",
"name": "My job",
"func": "main:job1",
"args": [
"1",
"5"
],
"kwargs": {},
"trigger": "cron",
"start_date": "2017-12-19T00:00:00+00:00",
"minute": "*/1",
"misfire_grace_time": 1,
"max_instances": 1,
"next_run_time": "2017-12-19T00:00:00+00:00"
}

curl -v -H "Accept: application/json" -H "Content-type: application/json" -X PATCH  -d '{"trigger": "cron", "minute": "*/13", "start_date": "2017-12-21"}' http://<service IP>:5000/scheduler/jobs/4444

{
"id": "4444",
"name": "My job",
"func": "main:job1",
"args": [
"1",
"5"
],
"kwargs": {},
"trigger": "cron",
"start_date": "2017-12-21T00:00:00+00:00",
"minute": "*/13",
"misfire_grace_time": 1,
"max_instances": 1,
"next_run_time": "2017-12-19T00:00:00+00:00"
}

curl -v -X  GET http://<service IP>:5000/scheduler/jobs/4444

{
"id": "4444",
"name": "My job",
"func": "main:job1",
"args": [
"1",
"5"
],
"kwargs": {},
"trigger": "cron",
"start_date": "2017-12-21T00:00:00+00:00",
"minute": "*/13",
"misfire_grace_time": 1,
"max_instances": 1,
"next_run_time": "2017-12-19T00:00:00+00:00"
}

from flask-apscheduler.

viniciuschiele avatar viniciuschiele commented on July 19, 2024

Good catch.

It seems APScheduler doesn't calculate the next run time when a job is updated, I will have to do it manually.

I will release a new version soon.

from flask-apscheduler.

viniciuschiele avatar viniciuschiele commented on July 19, 2024

It's done, version 1.3.7

Let me know if you find any other issue.

from flask-apscheduler.

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.