Skip to content

Commit

Permalink
Sources aren't materialized (#4417) (#4420)
Browse files Browse the repository at this point in the history
Co-authored-by: Jeremy Cohen <jeremy@dbtlabs.com>
  • Loading branch information
leahwicz and jtcohen6 authored Dec 3, 2021
1 parent ecf0ffe commit 42a38e4
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 42a38e4

Please sign in to comment.