summaryrefslogtreecommitdiff
path: root/rq/queue.py
Commit message (Expand)AuthorAgeFilesLines
* enqueue_at should support explicit args and kwargsenqueue-at-argsSelwin Ong2020-03-081-27/+38
* Add job status setting in enqueue_at (and in enqueue_in) methods (#1181)Ivan Kiryanov2020-01-231-3/+3
* Job scheduling (#1163)Selwin Ong2020-01-041-8/+68
* Multi Dependency Support - Registration & Enqueue Call (#1155)Thomas Matecki2019-11-261-25/+27
* Fix dependent jobs enqueueing (#1145)Ivan Piskunov2019-10-171-1/+1
* Added checks for 0 ttl (#1110)Selwin Ong2019-06-161-1/+10
* RQ v1.0! (#1059)Selwin Ong2019-03-301-91/+36
* Fix #1040 queue default timeout bug. (#1042)Wolfgang Langner2019-02-231-2/+2
* modify zadd calls for redis-py 3.0 (#1016)Darshan Rai2018-12-031-7/+7
* Replace "timeout" argument in queue.enqueue() with "job_timeout" (#1010)Selwin Ong2018-11-221-1/+6
* add is_async property to queue (#982)Paul Robertson2018-08-081-0/+5
* Replace 'async' keyword with 'is_async' for Queue objects (#977)chevell2018-07-071-5/+10
* Define redis key prefix as class variable (#939)stj2018-04-061-4/+5
* Worker statistics (#897)Selwin Ong2017-10-281-1/+0
* Merge pull request #878 from theodesp/Issue-731Selwin Ong2017-10-241-0/+10
|\
| * Fixed #731 - Code review issues. Added delete_jobs parameter and pipelining.Theo2017-10-041-5/+9
| * Fixed #731 - Support for deleting QueuesTheo2017-09-081-0/+6
* | Fixed #866 - Flak8 errorsTheo2017-09-081-2/+3
|/
* Added non zero check for Queue class.Selwin Ong2017-08-031-0/+6
* Merge pull request #831 from katichev/explicit_cleanupSelwin Ong2017-06-211-0/+3
|\
| * remove implicit cleanup call from job.saveAlexey Katichev2017-05-071-0/+3
* | Honor the job_class for failed_queue.Amjith Ramanujam2017-06-071-1/+1
* | * Added support to use strings to specify both result_ttl and ttl.Yaniv Greenberg2017-05-081-0/+2
|/
* Fixed issue#72 (#818)luojiebin2017-04-281-3/+3
* Make `Queue.enqueue_job()` execute immediately if `async=False` (#798)Felipe Lacerda2017-04-151-3/+3
* Merge commit '83007b20740a97f085a14d3840d1e434350c6600'Marko Mrdjenovic2017-02-141-23/+38
|\
| * Merge pull request #786 from jezdez/backend-class-overridesSelwin Ong2017-02-031-21/+36
| |\
| | * Allow passing backend classes (job, queue, worker, connection) from CLI and o...Jannis Leidel2017-01-251-21/+36
| * | Take a different tack, and enable the exclusion of meta from savesBenjamin Root2017-01-271-2/+2
| |/
* | moved job run to separate method to make async jobs easierMarko Mrdjenovic2017-01-291-4/+8
|/
* Don't run lrem directly if we have a pipelineMichael DeWulf2016-12-081-0/+1
* queue.enqueue_call should call Job.exists with connection parameters.Selwin Ong2016-12-061-4/+4
* Another check on failed status and testJulien Surloppe2016-12-031-1/+1
* Fix get job on failed queueJulien Surloppe2016-12-031-1/+1
* Merge branch 'master' into 739_fix_race_conditionStefan Hammer2016-11-191-3/+13
|\
| * Pass pipeline to push_job_id from enqueue_jobMichael DeWulf2016-11-181-3/+3
| * fetch_job - check correct queue, fix #728Samuel Colvin2016-09-201-1/+4
| * Raise an exception if a given dependency does not existStefan Hammer2016-08-251-2/+9
* | completely pipelined enqueue_dependentsStefan Hammer2016-08-131-17/+43
* | protecting dependency enqueuing with redis WATCHStefan Hammer2016-08-111-1/+3
|/
* Dependent jobs are now correctly enqueued even if their parent jobs have resu...Selwin Ong2016-05-061-1/+1
* Set job as finished when not working in async modeEduard Carreras2015-12-281-0/+1
* Allow meta when enqueingTornstrom2015-11-301-3/+4
* Do not call pipeline.execute() if pipeline is given as argumentJavier Lopez2015-08-271-8/+7
* Added pipeline named argument to enqueue_jobJavier Lopez2015-08-241-14/+15
* enqueue_dependents now uses origin queue to enqueueJavier Lopez2015-08-241-3/+10
* fix: return (None, None) for dequeue_any if no resultJean-Christophe SAAD-DUPUY2015-08-131-0/+1
* fix: remove recursive call to dequeue_anyJean-Christophe SAAD-DUPUY2015-08-131-19/+20
* make args and kwargs explicit for enqueue_call functionDustin Falgout2015-08-041-1/+1
* Sync jobs should be cleaned up after execution.Selwin Ong2015-07-101-4/+10