You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`was_skipped`| Check if a given task was skipped. You can read about skipping in [the docs](/v1/conditions#checking-if-a-task-was-skipped).|
16
+
|`was_skipped`| Check if a given task was skipped. You can read about skipping in [the docs](/v1/directed-acyclic-graphs#checking-if-a-parent-was-skipped). |
17
17
|`task_output`| Get the output of a parent task in a DAG. |
18
18
|`cancel`| Cancel the current task run. This will call the Hatchet API to cancel the step run and set the exit flag to True. |
19
19
|`aio_cancel`| Cancel the current task run. This will call the Hatchet API to cancel the step run and set the exit flag to True. |
@@ -146,7 +146,7 @@ Returns:
146
146
147
147
#### `was_skipped`
148
148
149
-
Check if a given task was skipped. You can read about skipping in [the docs](/v1/conditions#checking-if-a-task-was-skipped).
149
+
Check if a given task was skipped. You can read about skipping in [the docs](/v1/directed-acyclic-graphs#checking-if-a-parent-was-skipped).
Often you may want to run a task multiple times with different inputs. There is significant overhead (i.e. network roundtrips) to write the task, so if you're running multiple tasks, it's best to use the bulk run methods.
0 commit comments