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
In the dbt prefect bigquery workflow, the first command in the list (pwd) fails because it's not a dbt command. Every command in the DbtCoreOperation is presumed to be a valid dbt command and --profiles-dir and --project-dir are appended during command run. when you append the commands to the bash command pwd (e.g pwd --profiles-dir /some/dir --project-dir /some/dir) it fails because it treats the appends as flags.
Weirdly, this does not trigger the task to fail. It only shows on the logs as an info. See screenshot below
The text was updated successfully, but these errors were encountered:
In the dbt prefect bigquery workflow, the first command in the list (
pwd
) fails because it's not a dbt command. Every command in the DbtCoreOperation is presumed to be a valid dbt command and--profiles-dir
and--project-dir
are appended during command run. when you append the commands to the bash commandpwd
(e.gpwd --profiles-dir /some/dir --project-dir /some/dir
) it fails because it treats the appends as flags.Weirdly, this does not trigger the task to fail. It only shows on the logs as an info. See screenshot below
The text was updated successfully, but these errors were encountered: