aboutsummaryrefslogtreecommitdiffstats
path: root/docs/conf.py
diff options
context:
space:
mode:
authorjason2016-05-24 16:49:54 -0600
committerjason2016-05-24 16:49:54 -0600
commita592ba06ea019bbb0051ffe5fc006d98560d038a (patch)
tree588590a6423a19c59aa2cac9f57b7025f4f5f44b /docs/conf.py
parent2c599d965493b3658ffadc0c3e9e1b5a209cf1ba (diff)
downloadeventmq-a592ba06ea019bbb0051ffe5fc006d98560d038a.tar.gz
eventmq-a592ba06ea019bbb0051ffe5fc006d98560d038a.zip
More work for named queues
- Rename `WORKERS` setting to `CONCURRENT_JOBS` for more clarity. Added this setting to the command line options, the ini .conf & default settings conf.py files. - Added support for JSON style arrays in INI config. - Added support for weighted named queues. The style for the setting is [[weight, "name"], [weight, "name"]]. Configured in both the INI and command line for job manager. Added documentation. - Updated the spec for the INFORM message. Weights are sent with the queue names. If there are no weights specified they will be given the default value of 0. - updated Router.queues to a list from a deque so that it can be sorted by priority more easily.
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 864bbcf..aa23956 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -16,6 +16,7 @@ import sys
16import os 16import os
17import shlex 17import shlex
18 18
19import eventmq # for __version__
19# If extensions (or modules to document with autodoc) are in another directory, 20# If extensions (or modules to document with autodoc) are in another directory,
20# add these directories to sys.path here. If the directory is relative to the 21# add these directories to sys.path here. If the directory is relative to the
21# documentation root, use os.path.abspath to make it absolute, like shown here. 22# documentation root, use os.path.abspath to make it absolute, like shown here.
@@ -52,15 +53,15 @@ master_doc = 'index'
52 53
53# General information about the project. 54# General information about the project.
54project = u'EventMQ' 55project = u'EventMQ'
55copyright = u'2015, eventboard.io' 56copyright = u'2016, eventboard.io'
56author = u'eventboard.io' 57author = u'EventMQ Contributors'
57 58
58# The version info for the project you're documenting, acts as replacement for 59# The version info for the project you're documenting, acts as replacement for
59# |version| and |release|, also used in various other places throughout the 60# |version| and |release|, also used in various other places throughout the
60# built documents. 61# built documents.
61# 62#
62# The short X.Y version. 63# The short X.Y version.
63version = '0' 64version = eventmq.__version__
64# The full version, including alpha/beta/rc tags. 65# The full version, including alpha/beta/rc tags.
65release = '0' 66release = '0'
66 67