f
This commit is contained in:
11
.history/testpostgre_20250905023148.py
Normal file
11
.history/testpostgre_20250905023148.py
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
from airflow import DAG
|
||||||
|
from airflow.operators.dummy import DummyOperator
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
|
with DAG(
|
||||||
|
dag_id="hello_world",
|
||||||
|
start_date=datetime(2025, 1, 1),
|
||||||
|
schedule_interval="@daily",
|
||||||
|
catchup=False,
|
||||||
|
) as dag:
|
||||||
|
task = DummyOperator(task_id="dummy_task")
|
||||||
11
.history/testpostgre_20250905160615.py
Normal file
11
.history/testpostgre_20250905160615.py
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
from airflow import DAG
|
||||||
|
from airflow.operators.dummy import DummyOperator
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
|
with DAG(
|
||||||
|
dag_id="hello_world_postgre",
|
||||||
|
start_date=datetime(2025, 1, 1),
|
||||||
|
schedule_interval="@daily",
|
||||||
|
catchup=False,
|
||||||
|
) as dag:
|
||||||
|
task = DummyOperator(task_id="dummy_task")
|
||||||
@@ -3,7 +3,7 @@ from airflow.operators.dummy import DummyOperator
|
|||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
with DAG(
|
with DAG(
|
||||||
dag_id="hello_world",
|
dag_id="hello_world_postgre",
|
||||||
start_date=datetime(2025, 1, 1),
|
start_date=datetime(2025, 1, 1),
|
||||||
schedule_interval="@daily",
|
schedule_interval="@daily",
|
||||||
catchup=False,
|
catchup=False,
|
||||||
|
|||||||
Reference in New Issue
Block a user