Skip to content

Commit

Permalink
* Fixes items format route in docs (celery#3875)
Browse files Browse the repository at this point in the history
* Minor fix to contributing.rst
  • Loading branch information
0bsearch authored and Omer Katz committed Mar 2, 2017
1 parent e42f073 commit c015bfd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.. _contributing:

==============
Contributing
==============
============
Contributing
============

Welcome!

Expand Down Expand Up @@ -285,6 +285,7 @@ Branches
Current active version branches:

* dev (which git calls "master") (https://github.com/celery/celery/tree/master)
* 4.0 (https://github.com/celery/celery/tree/4.0)
* 3.1 (https://github.com/celery/celery/tree/3.1)
* 3.0 (https://github.com/celery/celery/tree/3.0)

Expand Down
4 changes: 2 additions & 2 deletions docs/userguide/routing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ specify the router in *items* format instead:
.. code-block:: python
task_routes = ([
('feed.tasks.*': {'queue': 'feeds'}),
('web.tasks.*': {'queue': 'web'}),
('feed.tasks.*', {'queue': 'feeds'}),
('web.tasks.*', {'queue': 'web'}),
(re.compile(r'(video|image)\.tasks\..*'), {'queue': 'media'}),
],)
Expand Down

0 comments on commit c015bfd

Please sign in to comment.