Skip to content

Commit

Permalink
DAG descriptions interchanged
Browse files Browse the repository at this point in the history
  • Loading branch information
sarit-si committed Apr 27, 2021
1 parent bef3bb4 commit fe375c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source-code/dags/hello-world.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
default_args=args,
schedule_interval=None,
catchup=False,
description=f"Run multiple tasks in parallel for load testing",
description=f"Hello world!!!",
) as dag:

start = DummyOperator(
Expand Down
2 changes: 1 addition & 1 deletion source-code/dags/load-testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
default_args=args,
schedule_interval=None,
catchup=False,
description=f"Hello World!!!",
description=f"Run multiple tasks in parallel for load testing",
) as dag:

start = DummyOperator(
Expand Down

0 comments on commit fe375c0

Please sign in to comment.