@@ -147,9 +147,9 @@ If you want to run ``rqworker`` in burst mode, you can pass in the ``--burst`` f
147
147
148
148
If you need to use a custom worker class, you can pass in the ``--worker-class `` flag
149
149
with the path to your worker::
150
-
150
+
151
151
python manage.py rqworker high default low --worker-class 'path.to.GeventWorker'
152
-
152
+
153
153
Support for RQ Scheduler
154
154
------------------------
155
155
@@ -323,21 +323,21 @@ Deploying on Heroku
323
323
324
324
Add `django-rq ` to your `requirements.txt ` file with:
325
325
326
- .. code-block :: bash
326
+ .. code-block :: bash
327
327
328
328
pip freeze > requirements.txt
329
-
329
+
330
330
Update your `Procfile ` to:
331
331
332
- .. code-block :: bash
332
+ .. code-block :: bash
333
333
334
334
web: gunicorn --pythonpath=" $PWD /your_app_name" config.wsgi:application
335
335
336
336
worker: python your_app_name/manage.py rqworker high default low
337
337
338
338
Commit and re-deploy. Then add your new worker with:
339
339
340
- .. code-block :: bash
340
+ .. code-block :: bash
341
341
342
342
heroku scale worker=1
343
343
@@ -352,11 +352,22 @@ admin fit in with the django-suit styles.
352
352
Changelog
353
353
=========
354
354
355
+ 0.9.1
356
+ -----
357
+ * Added ``-i `` and ``--queue `` options to `rqscheduler ` management command. Thanks @mbodock and @sbussetti!
358
+ * Added ``--pid `` option to ``rqworker `` management command. Thanks @ydaniv!
359
+ * Admin interface fixes for Django 1.9. Thanks @philippbosch!
360
+ * Compatibility fix for ``django-redis-cache ``. Thanks @scream4ik!
361
+ * **Backward incompatible **: Exception handlers are now defined via ``RQ_EXCEPTION_HANDLERS `` in ``settings.py ``. Thanks @sbussetti!
362
+ * Queues in django-admin are now sorted by name. Thanks @pnuckowski!
363
+
364
+
365
+
355
366
0.9.0
356
367
-----
357
368
* Support for Django 1.9. Thanks @aaugustin and @viaregio!
358
369
* ``rqworker `` management command now accepts ``--worker-ttl `` argument. Thanks pnuckowski!
359
- * You can now easily specify custom ``EXCEPTION_HANDLERS `` in ``settings.py ``. Thanks @xuhcc!
370
+ * You can now easily specify custom ``EXCEPTION_HANDLERS `` in ``settings.py ``. Thanks @xuhcc!
360
371
* ``django-rq `` now requires RQ >= 0.5.5
361
372
362
373
0.8.0
0 commit comments