Skip to content

Commit

Permalink
Sources aren't materialized (#4417)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtcohen6 authored and leahwicz committed Dec 3, 2021
1 parent e9f26ef commit a9cc17e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/events/base_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def get_node_info(self):
node_name=self.report_node_data.name,
unique_id=self.report_node_data.unique_id,
resource_type=self.report_node_data.resource_type.value,
materialized=self.report_node_data.config.materialized,
materialized=self.report_node_data.config.get('materialized'),
node_status=str(self.report_node_data._event_status.get('node_status')),
node_started_at=self.report_node_data._event_status.get("started_at"),
node_finished_at=self.report_node_data._event_status.get("finished_at")
Expand Down

0 comments on commit a9cc17e

Please sign in to comment.