Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Cancel all pending futures on AsyncIOExecutor shutdown | Alex Grönholm | 2017-12-13 | 1 | -0/+16 |
| | | | | Fixes #233. | ||||
* | Allow spaces around commas in CronTrigger fields | Alex Grönholm | 2017-12-12 | 1 | -0/+4 |
| | | | | Fixes #229. | ||||
* | Don't display empty jitter in the repr() of cron/interval triggers | Alex Grönholm | 2017-12-12 | 1 | -20/+18 |
| | |||||
* | Added support for creating cron triggers from crontab expressions | Alex Grönholm | 2017-12-12 | 1 | -0/+12 |
| | | | | Fixes #240. | ||||
* | Added support for named months | Alex Grönholm | 2017-12-12 | 1 | -2/+2 |
| | |||||
* | Added better validation for cron trigger expressions | Alex Grönholm | 2017-12-11 | 1 | -0/+13 |
| | | | | Fixes #189. | ||||
* | Implement random jitter option for CronTrigger and IntervalTrigger (#258) | Gilbert Gilb's | 2017-12-10 | 1 | -16/+169 |
| | |||||
* | Increased timeout to avoid test failure on pypy3 | Alex Grönholm | 2017-12-09 | 1 | -1/+1 |
| | |||||
* | Fixed traceback or its frames not being available for logger.exception() | Alex Grönholm | 2017-12-09 | 1 | -4/+5 |
| | |||||
* | Fixed memory leak when scheduled jobs raise exceptions | Alex Grönholm | 2017-12-09 | 1 | -1/+20 |
| | | | | Fixes #235. | ||||
* | Fixed PyPy3 test failure | Alex Grönholm | 2017-10-10 | 1 | -0/+3 |
| | |||||
* | Use getfixturevalue() instead of the deprecated getfuncargvalue() | Alex Grönholm | 2017-04-23 | 1 | -2/+2 |
| | |||||
* | Fixed @scheduled_job not playing nice with persistent job stores (fixes #150) | Alex Grönholm | 2016-11-06 | 2 | -7/+18 |
| | |||||
* | Fixed passing start_time and/or end_time to CronTrigger and IntervalTrigger ↵ | Alex Grönholm | 2016-11-05 | 1 | -0/+18 |
| | | | | | | as strings (fixes #164) This previously raised an AttributeError because the __init__() did not check if they were datetimes before trying to access the tzinfo attribute. | ||||
* | Added coroutine support for asyncio and Tornado executors (fixes #96, #98) | Alex Grönholm | 2016-09-15 | 2 | -0/+90 |
| | |||||
* | Fixed CronTrigger's range expression allowing values outside of the range | Alex Grönholm | 2016-08-02 | 1 | -0/+6 |
| | |||||
* | Renamed ZookeeperJobStore to ZooKeeperJobStore | Alex Grönholm | 2016-07-16 | 1 | -5/+5 |
| | |||||
* | Added tests for the import fix in ref_to_obj() | Alex Grönholm | 2016-07-14 | 1 | -0/+10 |
| | |||||
* | Zookeeper jobstore support (#144) | Jose Ignacio Villar | 2016-07-03 | 1 | -6/+56 |
| | |||||
* | Backtracked on enum use | Alex Grönholm | 2016-06-13 | 1 | -3/+3 |
| | | | | Use traditional integer constants instead for now. | ||||
* | Finished up the pause/resume scheduler feature w/ docs | Alex Grönholm | 2016-06-13 | 1 | -137/+89 |
| | | | | The scheduler will now no longer try to access job stores before it's been started. | ||||
* | Fixed endless loop with CronTrigger on computers with low clock resolution | Alex Grönholm | 2016-06-13 | 1 | -0/+7 |
| | | | | | This was triggered by get_next_fire_time() getting called with the same values for "previous_fire_time" and "now". This can occur when the clock returns the same datetime during both _real_add_job() and _process_jobs(). Fixes # 125. | ||||
* | Fixed incorrect DateTrigger run time with run_date=None and a non-local timezone | Alex Grönholm | 2016-05-06 | 1 | -5/+9 |
| | | | | Fixes #133 | ||||
* | Added the ability to pause and resume job processing in the scheduler | Alex Grönholm | 2016-04-10 | 2 | -188/+224 |
| | | | | Closes #21 | ||||
* | Move the wakeup() call directly to BaseScheduler.start() | Alex Grönholm | 2016-04-10 | 1 | -19/+0 |
| | | | | The start() call was made non-abstract, as it's no longer necessary to implement an overridden version on all job stores. | ||||
* | Added pickling tests for triggers | Alex Grönholm | 2016-04-03 | 1 | -1/+32 |
| | |||||
* | Added time zone to the output of CronTrigger and IntervalTrigger | Alex Grönholm | 2016-04-02 | 1 | -15/+25 |
| | |||||
* | Added EVENT_JOB_SUBMITTED and EVENT_JOB_MAX_INSTANCES events | Alex Grönholm | 2016-04-02 | 1 | -1/+26 |
| | |||||
* | Fixed off-by-1-hour bug in cron trigger while crossing the DST threshold ↵ | Alex Grönholm | 2016-03-27 | 1 | -12/+13 |
| | | | | (fixes #115) | ||||
* | Improved the IntervalTrigger's dst change test | Alex Grönholm | 2016-03-27 | 1 | -5/+5 |
| | |||||
* | Fixed flake8 complaints | Alex Grönholm | 2016-01-22 | 2 | -6/+18 |
| | |||||
* | Small test cleanups | Alex Grönholm | 2016-01-07 | 3 | -16/+1 |
| | |||||
* | Replaced custom log capture fixture with pytest-catchlog | Alex Grönholm | 2016-01-07 | 1 | -22/+17 |
| | |||||
* | Changed cleanup requests in fixtures into yield_fixtures | Alex Grönholm | 2016-01-07 | 2 | -45/+34 |
| | |||||
* | Improved PEP 8 and PEP 257 compliancy | Alex Grönholm | 2015-12-11 | 8 | -156/+224 |
| | | | | Moved from the previous 120 column limit to PEP 8 compliant 99 column limit. | ||||
* | Replaced six.u('') with u'' | Alex Grönholm | 2015-12-10 | 1 | -3/+3 |
| | |||||
* | Store the test SQLite database in a temporary directory | Alex Grönholm | 2015-12-10 | 1 | -5/+5 |
| | |||||
* | Moved the connection logic in job stores to the start() method | Alex Grönholm | 2015-12-10 | 1 | -43/+35 |
| | |||||
* | Made "funcsigs" a mandatory dependency on Python 2 | Alex Grönholm | 2015-12-10 | 1 | -10/+5 |
| | |||||
* | Fixed the MongoDB job store repr() test to work with newer versions of PyMongo | Alex Grönholm | 2015-12-09 | 1 | -1/+1 |
| | |||||
* | add some CronTrigger tests | liuchao12 | 2015-11-26 | 1 | -0/+15 |
| | |||||
* | Fixed minor issues with tests | Alex Grönholm | 2015-10-01 | 2 | -4/+3 |
| | |||||
* | fixes add_executor while scheduler is running. | Sylvain Duchesne | 2015-08-14 | 1 | -1/+2 |
| | |||||
* | Cleanups and fixes for the rethinkdb job store | Alex Grönholm | 2015-06-13 | 1 | -2/+1 |
| | |||||
* | Fixed compatibility with pymongo 3.0 | Alex Grönholm | 2015-04-20 | 1 | -3/+2 |
| | |||||
* | Removed unused import | Alex Grönholm | 2015-03-09 | 1 | -1/+0 |
| | |||||
* | Fixed str(job) or unicode(job) raising an exception for pending jobs (fixes #67) | Alex Grönholm | 2015-03-09 | 1 | -12/+19 |
| | |||||
* | Fixed wrong job sort order in some job stores and a related exception in the ↵ | Alex Grönholm | 2015-03-09 | 1 | -3/+6 |
| | | | | redis store (fixes #86) | ||||
* | Fixed ValueError when the target callable has a default keyword argument ↵ | Alex Grönholm | 2015-01-06 | 1 | -0/+6 |
| | | | | that wasn't overridden | ||||
* | Cleanup to fix flake8 tests | Alex Grönholm | 2014-10-20 | 1 | -1/+2 |
| |