diff options
| author | jason | 2016-05-24 16:49:54 -0600 |
|---|---|---|
| committer | jason | 2016-05-24 16:49:54 -0600 |
| commit | a592ba06ea019bbb0051ffe5fc006d98560d038a (patch) | |
| tree | 588590a6423a19c59aa2cac9f57b7025f4f5f44b /docs/conf.py | |
| parent | 2c599d965493b3658ffadc0c3e9e1b5a209cf1ba (diff) | |
| download | eventmq-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.py | 7 |
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 | |||
| 16 | import os | 16 | import os |
| 17 | import shlex | 17 | import shlex |
| 18 | 18 | ||
| 19 | import 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. |
| 54 | project = u'EventMQ' | 55 | project = u'EventMQ' |
| 55 | copyright = u'2015, eventboard.io' | 56 | copyright = u'2016, eventboard.io' |
| 56 | author = u'eventboard.io' | 57 | author = 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. |
| 63 | version = '0' | 64 | version = eventmq.__version__ |
| 64 | # The full version, including alpha/beta/rc tags. | 65 | # The full version, including alpha/beta/rc tags. |
| 65 | release = '0' | 66 | release = '0' |
| 66 | 67 | ||