From 7b05ad7161c1db4b15c1bb0d176db0334bf7198b Mon Sep 17 00:00:00 2001 From: parthp2107 <83201188+parthp2107@users.noreply.github.com> Date: Mon, 25 Oct 2021 10:25:49 +0530 Subject: [PATCH] changed elasticsearch username and password from required to optional (#922) --- ingestion/src/metadata/ingestion/sink/elasticsearch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ingestion/src/metadata/ingestion/sink/elasticsearch.py b/ingestion/src/metadata/ingestion/sink/elasticsearch.py index d9b580f8167..7508079d52e 100644 --- a/ingestion/src/metadata/ingestion/sink/elasticsearch.py +++ b/ingestion/src/metadata/ingestion/sink/elasticsearch.py @@ -52,8 +52,8 @@ logger = logging.getLogger(__name__) class ElasticSearchConfig(ConfigModel): es_host: str es_port: int = 9200 - es_username: str - es_password: str + es_username: Optional[str] = None + es_password: Optional[str] = None index_tables: Optional[bool] = True index_topics: Optional[bool] = True index_dashboards: Optional[bool] = True