Hello, Im following a standard guide on dbt prefec...
# prefect-getting-started
m
Hello, Im following a standard guide on dbt prefect setup. Im getting "RuntimeError: PID 8980 failed with return code 1.". CLI dbt builds and run work well My code is:
Copy code
def trigger_dbt_flow() -> str:
    result = DbtCoreOperation(
        commands=["dbt run"],
        project_dir="dbt_transforms", # dbt project directory
        profiles_dir="dbt_transforms"
    ).run()
    return result