Skip to content

Commit

Permalink
Fix exposures crash with questions referencing questions (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
gouline authored Jan 27, 2024
1 parent 2f8c88d commit eab95fd
Show file tree
Hide file tree
Showing 7 changed files with 2,024 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dbtmetabase/_exposures.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def __extract_card_exposures(
depends += self.__extract_card_exposures(
ctx,
card=self.metabase.get_card(uid=query_source.split("__")[-1]),
)["models"]
)["depends"]
elif query_source in ctx.table_names:
# Normal question
source_table = ctx.table_names.get(query_source)
Expand All @@ -212,7 +212,7 @@ def __extract_card_exposures(
depends += self.__extract_card_exposures(
ctx,
card=self.metabase.get_card(uid=join_source.split("__")[-1]),
)["models"]
)["depends"]
continue

# Joined model parsed
Expand Down
Loading

0 comments on commit eab95fd

Please sign in to comment.