Skip to content

Commit

Permalink
new dag
Browse files Browse the repository at this point in the history
  • Loading branch information
juliandragoi committed Jul 14, 2023
1 parent e6cc3f3 commit 899aa18
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 50 deletions.
14 changes: 14 additions & 0 deletions dags/stress_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from datetime import datetime
from airflow import DAG
from airflow.operators.dummy_operator import DummyOperator
from airflow.operators.bash import BashOperator


dag = DAG('hello_world', description='Hello World DAG',
schedule_interval='0 12 * * *',
start_date=datetime(2017, 3, 20), catchup=False)

commands = BashOperator(
task_id='test'
bash_command='sleep 5'
)
25 changes: 0 additions & 25 deletions dags/test_dag.py

This file was deleted.

25 changes: 0 additions & 25 deletions dags/test_dag2.py

This file was deleted.

0 comments on commit 899aa18

Please sign in to comment.