python-consul icon indicating copy to clipboard operation
python-consul copied to clipboard

Python client for Consul (http://www.consul.io/)

Results 90 python-consul issues
Sort by recently updated
recently updated
newest added

Basically I need python-consul to work with this: ```sh # env | grep CONSUL_HTTP_ADDR CONSUL_HTTP_ADDR=unix:///var/run/consul/http.sock ``` Just like the consul cli does. Unfortunately I had to change a lot of...

not ready

I've been working on a tornado compatible python-nomad module (https://github.com/tolmanam/python-nomad-alt) based on the great work you've done with the python-consul project. I've tried to keep a lot of what you...

Hi, according to latest consul documentation for authentication: https://www.consul.io/api/index.html#authentication, consul client should insert token to the header when sending requests to agent. This is my implementation, hopefully it'll help somebody....

Stops values in the environment overriding configuration passed to `Consul` constructor through the parameters. Fixes https://github.com/cablehead/python-consul/issues/192.

Providing the token in the data does not work on Consul v1.0.3 This matches the implementation of the catalog register request

Fixes https://github.com/cablehead/python-consul/issues/172 Should work for both Python 2 and 3.

As discussed in #45, this adds both a global `consul.Consul(timeout=...)` option, and request specific timeout option (e.g. `c.kv.get('foo',timeout=...)`). This will be applied as both a connect timeout and read timeout...

not ready

Since the consul API raises an error when the session TTL is below 10 or above 3600 seconds we don't have to do a check. The reason why this should...

Hi there, I just want to have a try by using the servier register class. please see my code below. master=consul.Consul() `master.agent.service.register(name="Service1",service_id="222",tags=["tag1"],meta={"1":'s'}) But it said : TypeError: register() got an...