summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Show worker hostname and PID on cliimprove-rq-infoSelwin Ong2019-03-172-10/+16
|
* Clean worker registry (#1056)Selwin Ong2019-03-175-6/+65
| | | | | | * queue.enqueue() no longer accepts `timeout` argument * Added clean_worker_registry()
* queue.enqueue() no longer accepts `timeout` argument (#1055)Selwin Ong2019-03-165-22/+17
|
* Fixed worker.total_working_time bug (#1047)Selwin Ong2019-02-244-32/+59
|
* Improved rq info CLI command to be more efficient when displaying lar… (#1046)Selwin Ong2019-02-232-31/+57
| | | | | | * Improved rq info CLI command to be more efficient when displaying large number of workers * Fixed an rq info --by-queue bug
* Merge branch 'master' into v1.0Selwin Ong2019-02-233-2/+20
|\
| * Fix #1040 queue default timeout bug. (#1042)Wolfgang Langner2019-02-232-2/+20
| | | | | | Add test for queue default_timeout.
| * Delete .DS_Store (#1043)William Setzer2019-02-231-0/+0
| | | | | | Remove OSX artifact from repo.
* | Support for Sentry-SDK (#1045)Selwin Ong2019-02-2311-94/+104
| | | | | | | | | | | | | | | | * Updated RQ to support sentry-sdk * Document Sentry integration * Install sentry-sdk before running tests
* | Merge branch 'master' into v1.0Selwin Ong2019-02-056-31/+32
|\ \ | |/
| * Merge branch 'master' of github.com:rq/rqSelwin Ong2019-02-056-37/+36
| |\
| | * Make logging in worker consitent. (#1030)Wolfgang Langner2019-01-302-21/+21
| | | | | | | | | Switch some messages from warn to info because it is normal requested bahavior.
| | * refactor: job status check (#1035)Chyroc2019-01-301-6/+8
| | |
| | * refactor: use try ImportError instead of py-version check (#1034)Chyroc2019-01-303-10/+7
| | |
| * | Added anchor.js to docsSelwin Ong2019-02-052-0/+13
| |/
* | Added anchor.js to docsSelwin Ong2019-02-052-0/+10
| |
* | Worker should reraise SystemExit on cold shutdownsSelwin Ong2019-01-231-0/+4
| |
* | Merge branch 'master' into v1.0Selwin Ong2019-01-239-111/+102
|\ \ | |/
| * Changed docs to use Github compatible code block markupSelwin Ong2019-01-238-98/+94
| |
| * Fixed CSS styles for code blocks.Selwin Ong2019-01-231-1/+1
| |
| * Try out an alternate way to indicate code blocks in docsSelwin Ong2019-01-231-3/+2
| |
* | Worker will now stop working when encountering an unhandled exception.Selwin Ong2019-01-231-0/+11
| |
* | Added a note about random worker names in CHANGES.mdSelwin Ong2019-01-231-1/+2
| |
* | Merge branch 'master' into v1.0Selwin Ong2019-01-227-18/+43
|\ \ | |/
| * Fix collections abc import deprecation warning. (#1032)Wolfgang Langner2019-01-221-1/+4
| | | | | | | | | | | | | | * Fix collections abc import. Prepare for 3.8 when it is deprecated. * Fix Pyton 2.7 build.
| * Update/add flag for description logging (#991)Finnci2019-01-224-4/+33
| | | | | | | | | | | | | | | | | | | | | | | | * test workers * indent * add docs and add option to the cli * rename flag for cli * logging
| * Fix run_tests to use pytest. (#1033)Wolfgang Langner2019-01-222-12/+5
| | | | | | Update tox.ini envlist.
* | Merge branch 'master' into v1.0Selwin Ong2019-01-192-2/+0
|\ \ | |/
| * Remove Python 3.3 support. (#1031)Wolfgang Langner2019-01-192-2/+0
| | | | | | | | | | | | | | | | * Remove Python 3.3 support. Redis >= 3.X does only support Python >=3.4. Python 3.7 is no longer dev. * Use dev for Python 3.7 build again.
* | Worker names are now randomizedSelwin Ong2019-01-193-30/+50
| |
* | Fixes test_clean_registriesSelwin Ong2019-01-191-1/+1
| |
* | FailedJobRegistry no longer fails on redis-py>=3Selwin Ong2019-01-191-1/+1
| |
* | Merge branch 'master' into v1.0Selwin Ong2019-01-193-10/+14
|\ \ | |/
| * Bump version to 0.13.0Selwin Ong2018-12-152-8/+21
| |
| * Updated requirements.txt on Heroku docsSelwin Ong2018-12-111-2/+2
| |
* | Replaced _pipeline() with pipeline()Selwin Ong2018-12-041-1/+1
| |
* | Merge branch 'master' into v1.0Selwin Ong2018-12-041-0/+1
|\ \ | |/
| * skip test_1_sec_shutdown with pypy (#1020)Samuel Colvin2018-12-041-0/+1
| | | | | | | | | | | | * skip test_1_sec_shutdown with pypy, fix #1019 * skip all HerokuWorkerShutdownTestCase with pypy
* | Merge branch 'master' into v1.0Selwin Ong2018-12-0321-99/+74
|\ \ | |/
| * modify zadd calls for redis-py 3.0 (#1016)Darshan Rai2018-12-0319-94/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * modify zadd calls for redis-py 3.0 redis-py 3.0 changes the zadd interface that accepts a single mapping argument that is expected to be a dict. https://github.com/andymccurdy/redis-py#mset-msetnx-and-zadd * change FailedQueue.push_job_id to always push a str redis-py 3.0 does not attempt to cast values to str and is left to the user. * remove Redis connection patching Since in redis-py 3.0, Redis == StrictRedis class, we no longer need to patch _zadd and other methods. Ref: https://github.com/rq/rq/pull/1016#issuecomment-441010847
| * Replace "timeout" argument in queue.enqueue() with "job_timeout" (#1010)Selwin Ong2018-11-223-6/+20
| |
| * fix typo - change -> chance (#1012)Michael Abrahamsen2018-11-141-1/+1
| |
* | Fixed typo in test_registry.pySelwin Ong2018-10-291-1/+1
| |
* | Remove job.statusSelwin Ong2018-10-283-21/+7
| |
* | Merge branch 'failed-job-registry' into v1.0Selwin Ong2018-10-281-2/+25
|\ \
| * \ Merge branch 'master' into failed-job-registrySelwin Ong2018-10-274-4/+37
| |\ \ | | |/
| | * Document Job.fetch() and job attributes.Selwin Ong2018-10-271-2/+25
| | |
* | | Updated docs.Selwin Ong2018-10-271-17/+14
| | |
* | | Merge branch 'failed-job-registry' into v1.0Selwin Ong2018-10-2722-484/+695
|\ \ \ | |/ / | | / | |/ |/|
| * Document `failure_ttl`Selwin Ong2018-10-271-0/+7
| |