Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions examples/2_New_examples/1.1.1.Basic_linear.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,18 @@ dag:
params:
message: "Starting DAG"
dependencies: []

- task_id: "process"
type: "PythonTask"
params:
code: |
print("Processing data...")
dependencies: ["start"]
# dependency_policy: "all"

- task_id: "finish"
type: "PrintTask"
params:
message: "DAG completed!"
dependencies: ["process"]
dependency_policy: "all"
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,4 @@ dag:
params:
message: "All retry tasks completed!"
dependencies: ["unstable_task_2"]
# dependency_policy: "none"
Binary file removed maestro.db
Binary file not shown.
4 changes: 4 additions & 0 deletions server.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
2025-12-16 20:19:12,878 [INFO] __main__: [DEBUG] Initializing Maestro server with database: /home/dave_crd/Sync/VSCode/maestro/maestro.db
2025-12-16 21:57:58,975 [INFO] __main__: [DEBUG] Initializing Maestro server with database: /home/dave_crd/Sync/VSCode/maestro/maestro.db
2025-12-16 22:08:28,317 [INFO] __main__: [DEBUG] Initializing Maestro server with database: /home/dave_crd/Sync/VSCode/maestro/maestro.db
2025-12-16 22:55:04,930 [INFO] __main__: [DEBUG] Initializing Maestro server with database: /home/dave_crd/Sync/VSCode/maestro/maestro.db
Loading
Loading