diff options
author | Wido den Hollander <wido@widodh.nl> | 2016-04-11 14:56:58 +0200 |
---|---|---|
committer | Ask Solem <ask@celeryproject.org> | 2016-06-15 17:41:32 -0700 |
commit | 551d92014d09f43ea30f0a3ff7ea6af3eb764a1e (patch) | |
tree | fce8e9ae49b61795fb37a56858fe47700981cc70 /setup.py | |
parent | ad45023e821d21fe52e8328a0d85336794ed555d (diff) | |
download | kombu-551d92014d09f43ea30f0a3ff7ea6af3eb764a1e.tar.gz |
Add Consul K/V store Transport
Using the Key/Value store of Consul.io this commit adds a new
Transport.
It is a simple Transport which Messages as Keys in the K/V store
of Consul using the HTTP API.
The HTTP API is consumed using the python-consul client which exposes
the API in a Python way.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -165,5 +165,6 @@ setup( 'pyro': extras('pyro.txt'), 'slmq': extras('slmq.txt'), 'qpid': extras('qpid.txt'), + 'consul': extras('consul.txt'), }, ) |