mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-25 08:50:18 +00:00
changed elasticsearch username and password from required to optional (#922)
This commit is contained in:
parent
ba5c92c9a0
commit
7b05ad7161
@ -52,8 +52,8 @@ logger = logging.getLogger(__name__)
|
|||||||
class ElasticSearchConfig(ConfigModel):
|
class ElasticSearchConfig(ConfigModel):
|
||||||
es_host: str
|
es_host: str
|
||||||
es_port: int = 9200
|
es_port: int = 9200
|
||||||
es_username: str
|
es_username: Optional[str] = None
|
||||||
es_password: str
|
es_password: Optional[str] = None
|
||||||
index_tables: Optional[bool] = True
|
index_tables: Optional[bool] = True
|
||||||
index_topics: Optional[bool] = True
|
index_topics: Optional[bool] = True
|
||||||
index_dashboards: Optional[bool] = True
|
index_dashboards: Optional[bool] = True
|
||||||
|
Loading…
x
Reference in New Issue
Block a user