We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm running a recent 3.* image of etcd in a container. I then try to connect to this instance, like so:
from etcd import client c = client.Client(host="127.0.0.1", port=2379)
This results in:
HTTPError: 404 Client Error: Not Found
The traceback reveals that this is thrown here:
File "/home/jbrendel/projects/pani/local/lib/python2.7/site-packages/etcd/server_ops.py", line 47, in get_machines response = self.client.send(2, 'get', fq_path, allow_reconnect=False)
Adding a print statement there shows that it tries to read /keys/_etcd/machines
/keys/_etcd/machines
My etcd version doesn't have this key, though.
What seems to be the problem?
The text was updated successfully, but these errors were encountered:
I'm facing the same issue. Any luck with it?
Sorry, something went wrong.
No branches or pull requests
I'm running a recent 3.* image of etcd in a container. I then try to connect to this instance, like so:
This results in:
The traceback reveals that this is thrown here:
Adding a print statement there shows that it tries to read
/keys/_etcd/machines
My etcd version doesn't have this key, though.
What seems to be the problem?
The text was updated successfully, but these errors were encountered: