You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
My little advice is to to use the switch --no-use-colors in dbt_hook.py
def run_cli(self, *command):
"""
Run the dbt cli
:param command: The dbt command to run
:type command: str
"""
dbt_cmd = [self.dbt_bin, "--no-use-colors", *command]
if self.profiles_dir is not None:
dbt_cmd.extend(['--profiles-dir', self.profiles_dir])
The log will be cleaner and not full of ANSI escape chars.
The text was updated successfully, but these errors were encountered:
dinigo
added a commit
to dinigo/airflow-dbt
that referenced
this issue
Oct 22, 2021
My little advice is to to use the switch --no-use-colors in dbt_hook.py
The log will be cleaner and not full of ANSI escape chars.
The text was updated successfully, but these errors were encountered: