Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jtcohen6 committed Jan 7, 2021
1 parent 1e9a47b commit bd34292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macros/common/stage_external_sources.sql
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
{% endcall %}

{% set runner = load_result('runner') %}
{% set log_msg = runner['response'] if response in runner.keys() else runner['status'] %}
{% set log_msg = runner['response'] if 'response' in runner.keys() else runner['status'] %}
{% do dbt_utils.log_info(loop_label ~ ' (' ~ loop.index ~ ') ' ~ log_msg) %}

{% endfor %}
Expand Down

0 comments on commit bd34292

Please sign in to comment.