Skip to content

Commit

Permalink
Connection 'get' fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Antonellini committed Feb 23, 2024
1 parent ac0a3bd commit cf76b36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion orchestrate/dags/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from operators.datacoves.bash import DatacovesBashOperator
from airflow.models import Connection

airbyte_connection = Connection.get(conn_id="AIRBYTE_CONNECTION")
airbyte_connection = Connection.get_connection(conn_id="AIRBYTE_CONNECTION")

@dag(
default_args={"start_date": "2021-01"},
Expand Down

0 comments on commit cf76b36

Please sign in to comment.