fix(ingest): Make url an optional field of the DefaultConfig for business glossary source. (#3817)

This commit is contained in:
Ravindra Lanka 2022-01-04 01:42:01 -08:00 committed by GitHub
parent 3e234a992c
commit 81bc173630
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,8 +52,8 @@ class DefaultConfig(ConfigModel):
"""Holds defaults for populating fields in glossary terms"""
source: str
url: str
owners: Owners
url: Optional[str] = None
source_type: Optional[str] = "INTERNAL"