Skip to content

Commit

Permalink
fix connection string
Browse files Browse the repository at this point in the history
  • Loading branch information
sarah-widder committed Jul 9, 2024
1 parent 9c8af23 commit d3e4f62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ class _AzureSqlServerSettings(BaseSettings, DatasourcePayloadConstructor):
)
_type: Literal["azure_sql_server"] = PrivateAttr(default="azure_sql_server")

connection_string: Optional[str] = None
connection_string: Optional[str] = Field(default=None, exclude=True)
table_schema: Optional[str] = None
schema_max_row: Optional[int] = None
top_n_results: Optional[int] = None
Expand Down

0 comments on commit d3e4f62

Please sign in to comment.