python-consul
python-consul copied to clipboard
Python client for Consul (http://www.consul.io/)
There are small typos in: - consul/base.py - tests/test_twisted.py Fixes: - Should read `perform` rather than `peform`. - Should read `twisted` rather than `twsited`. - Should read `synchronization` rather than...
fix missing param token when invoke agent.service.deregister
aio.Consul.close() uses aiohttp.ClientSession.close() which returns a coroutine that was never awaited. When this happens, RuntimeWarnings are raised on termination: RuntimeWarning: coroutine 'ClientSession.close' was never awaited self._session.close() RuntimeWarning: Enable tracemalloc to...
atm the node_meta param is only used for filtering but on the catalog.register action this field is used to provide metadata to a node upon registration
An environment variable of CONSUL_HTTP_ADDR=https://localhost:8501/ is valid for the Consul CLI. This PR allows the scheme/protocol to be pulled out of this environment variable.
Currently we are able to reconfigure session in sync client and add some logging and etc. But in aiohttp client sessions are frozen. So to add [client tracing](http://docs.aiohttp.org/en/stable/client_advanced.html#client-tracing) or any...
deregister function should use post method.
Added AARCH64 compatible library of consul and made the necessary changes in build script. Corrected the warning related to python "async" keyword, Remove support for python2.6 because python-consul doesn't support...
added aarch64 compatible library of consul and made the necessary changes in build script Signed-off-by: ossdev
This is not yet ready to merge as I running some integration level tests with our software. The problems I reported in #144 were hard to reproduce, so I need...