a
This commit is contained in:
parent
7b5e8b0515
commit
bdb23fb3e2
1 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,7 @@
|
||||||
from etcd3_wrapper import Etcd3Wrapper
|
from etcd3_wrapper import Etcd3Wrapper
|
||||||
from decouple import config
|
from decouple import config
|
||||||
|
|
||||||
etcd_client = Etcd3Wrapper(host=config("ETCD_URL"), user="root", password=config("ETCD_PASSWORD"))
|
# TODO: Remove timeout, use certificate authentication
|
||||||
|
etcd_client = Etcd3Wrapper(host=config("ETCD_URL"), user="root",
|
||||||
|
password=config("ETCD_PASSWORD"),
|
||||||
|
timeout=2629746)
|
||||||
|
|
Loading…
Reference in a new issue