Skip to content

Commit

Permalink
Add salesforce_default to List Connection (apache#24347)
Browse files Browse the repository at this point in the history
* add salesforce_default to List Connection

* add attributes to salesforce_default
  • Loading branch information
ishiis authored Jun 13, 2022
1 parent e452949 commit 6d69dd0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions airflow/utils/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,16 @@ def create_default_connections(session: Session = NEW_SESSION):
),
session,
)
merge_conn(
Connection(
conn_id="salesforce_default",
conn_type="salesforce",
login="username",
password="password",
extra='{"security_token": "security_token"}',
),
session,
)
merge_conn(
Connection(
conn_id="segment_default",
Expand Down

0 comments on commit 6d69dd0

Please sign in to comment.