From bdb23fb3e21e8a6d503d20e748593d4ac3e49899 Mon Sep 17 00:00:00 2001 From: Ahmed Bilal Khalid Date: Fri, 30 Aug 2019 23:40:17 +0500 Subject: [PATCH] a --- config.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/config.py b/config.py index 7a6740e..eb67738 100644 --- a/config.py +++ b/config.py @@ -1,4 +1,7 @@ from etcd3_wrapper import Etcd3Wrapper 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)