Skip to content

Commit

Permalink
fix(ingest): do not dump password
Browse files Browse the repository at this point in the history
  • Loading branch information
anshbansal committed Jun 23, 2022
1 parent 2be1e64 commit 5694fa6
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -289,7 +289,9 @@ def get_sql_alchemy_url(self):

class BasicSQLAlchemyConfig(SQLAlchemyConfig):
username: Optional[str] = Field(default=None, description="username")
password: Optional[pydantic.SecretStr] = Field(default=None, description="password")
password: Optional[pydantic.SecretStr] = Field(
default=None, exclude=True, description="password"
)
host_port: str = Field(description="host URL")
database: Optional[str] = Field(default=None, description="database (catalog)")
database_alias: Optional[str] = Field(
Expand Down

0 comments on commit 5694fa6

Please sign in to comment.