Skip to content

Commit

Permalink
try to get alias from config
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Abelson committed Feb 28, 2018
1 parent 64f420d commit 5040c88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/node_runners.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def after_hooks(cls, project, adapter, results, flat_graph, elapsed):
def describe_node(self):
materialization = dbt.utils.get_materialization(self.node)
schema_name = self.node.get('schema')
node_name = self.node.get('alias')
node_name = dbt.utils.get_alias(self.node)
return "{} model {}.{}".format(materialization, schema_name, node_name)

def print_start_line(self):
Expand Down

0 comments on commit 5040c88

Please sign in to comment.