Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion sqlmesh/dbt/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import typing as t
from argparse import Namespace
from collections import defaultdict
from functools import cached_property
from pathlib import Path

from dbt import constants as dbt_constants, flags
Expand Down Expand Up @@ -158,7 +159,7 @@ def all_macros(self) -> t.Dict[str, t.Dict[str, MacroInfo]]:
result[package_name][macro_name] = macro_config.info
return result

@property
@cached_property
def flat_graph(self) -> t.Dict[str, t.Any]:
return {
"exposures": {
Expand Down