Skip to content

Commit

Permalink
Fix placeholder operator
Browse files Browse the repository at this point in the history
  • Loading branch information
ranlu committed Feb 13, 2024
1 parent baa60fa commit 44fc751
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dags/igneous_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
stop_nfs_server = toggle_nfs_server_op(dag_igneous, on=False)
queue = "nfs"
else:
start_nfs_server = placeholder_op(dag_igneous, on=True)
stop_nfs_server = placeholder_op(dag_igneous, on=False)
start_nfs_server = placeholder_op(dag_igneous, "dummy_start_nfs")
stop_nfs_server = placeholder_op(dag_igneous, "dummy_stop_nfs")
queue = "manager"

submit_igneous_tasks = PythonOperator(
Expand Down

0 comments on commit 44fc751

Please sign in to comment.