Skip to content

Commit

Permalink
Switch from parallel to serial DAG
Browse files Browse the repository at this point in the history
Using ploomber's serial task manager lets users actually follow progress; we
will probably want to configure this to be an option in the config yaml file
but for now I'm going to hardcode it as serial.
  • Loading branch information
mnlevy1981 committed Jan 22, 2024
1 parent fda4d34 commit 729064f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cupid/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def run():
#####################################################################
# Ploomber - making a DAG

dag = ploomber.DAG(executor=ploomber.executors.Parallel())
dag = ploomber.DAG(executor=ploomber.executors.Serial())


#####################################################################
Expand Down

0 comments on commit 729064f

Please sign in to comment.