From 07e8d25bece98cbcda3b0314b1f9848f0f62472c Mon Sep 17 00:00:00 2001 From: Ahmed Bilal Khalid Date: Fri, 30 Aug 2019 23:40:43 +0500 Subject: [PATCH] a --- config.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/config.py b/config.py index 0b3f0be..4ed65fc 100644 --- a/config.py +++ b/config.py @@ -1,6 +1,7 @@ from decouple import config from etcd3_wrapper import Etcd3Wrapper -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)