Skip to content

Commit b2b37ba

Browse files
committed
Merge branch 'pull-17'
2 parents 57ac144 + 8cb25c5 commit b2b37ba

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.devcontainer/config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# SnowSQL config
22

33
[connections.dev]
4+
# See https://docs.snowflake.com/en/user-guide/admin-account-identifier.
45
accountname = myaccount
56
username = myusername
67
password = mypassword

.tool-versions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python 3.10.15

steps/07_deploy_task_dag.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ def main(session: Session) -> str:
6464
dag_task2 = DAGTask("LOAD_LOCATION_TASK", definition="CALL LOAD_EXCEL_WORKSHEET_TO_TABLE_SP(BUILD_SCOPED_FILE_URL(@FROSTBYTE_RAW_STAGE, 'intro/location.xlsx'), 'location', 'LOCATION')", warehouse=warehouse_name)
6565
dag_task3 = DAGTask("LOAD_DAILY_CITY_METRICS_TASK", definition="CALL LOAD_DAILY_CITY_METRICS_SP()", warehouse=warehouse_name)
6666

67-
dag_task2 >> dag_task1
68-
dag_task3 >> dag_task2
67+
dag_task1 >> dag_task3
68+
dag_task2 >> dag_task3
6969

7070
# Create the DAG in Snowflake
7171
schema = api_root.databases[database_name].schemas[schema_name]

0 commit comments

Comments
 (0)