-
I am trying to take a snapshot of etcd via etcd3 python client library and my code looks like this :
```
import etcd3
etcd = etcd3.client(
host='xx.xx.xx.xx',
…
-
Is etcd3 client thread safe?
-
Hi,
I am trying to find a way how can i extend TTL for lease by having its id only (not a whole object)? Lets say i have a script which will create lease:
```
import etcd3
etcd = etcd3.client()
…
-
Trying to deploy infisical via docker swarm. When I run the db migration I get the error below. First time I have used docker swarm so I am sure I am missing something.
```
> backend@1.0.0 migrati…
-
`etcd3.client.Client` performs IO in its constructor
https://github.com/kragniz/python-etcd3/blob/aca9b60205620e31b1635ce32b7ef74170698c7e/etcd3/client.py#L127
https://github.com/kragniz/python-…
-
```go
func UnRegister() error {
stopSignal 0 {
client, err = etcd3.New(etcd3.Config{
Endpoints: strings.Split(opt.Target, ","),
})
} else {
client, err = etcd3.NewFromURL(opt.Target…
-
It's just happened when trying running the quick-start in the redmi file
```
const { Etcd3 } = require('etcd3');
const client = new Etcd3();
(async () => {
await client.put('foo').value('ba…
-
* etcd3-py version: 0.1.6
* Python version: 3.6.8
* Operating System: Centos7.8
### Description
```python
from etcd3 import Client
etcd_cert="/etcd/ansible_etcd_certs/etcd-client-ca.pem"
…
-
Code:
import etcd3
import etcd3.etcdrpc as etcdrpc
import etcd3.exceptions
import etcd3.utils as utils
from etcd3.client import EtcdTokenCallCredentials
etcd = etcd3.client(host='localhost',port…
-
Can i set etcd cluster address in etcd3.client?
for example:
etcd3.client(host=(('127.0.0.1', 4001), ('127.0.0.1', 4002), ('127.0.0.1', 4003)))
If I have three nodes, What should i …