Skip to content

Commit

Permalink
Fix include_hidden param format in Metabase x.48.x (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
gouline authored Dec 19, 2023
1 parent ad7dc87 commit cd34587
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbtmetabase/metabase.py
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ def build_metadata(self, database_id: str) -> _Metadata:
metadata = self.api(
"get",
f"/api/database/{database_id}/metadata",
params={"include_hidden": True},
params={"include_hidden": "true"},
)

bigquery_schema = metadata.get("details", {}).get("dataset-id")
Expand Down

0 comments on commit cd34587

Please sign in to comment.