mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2025-12-30 21:29:44 -06:00
* fix: skipping bug * fix: move `waits` -> `conditions` * fix: refs * chore: ver * feat: add skipped task to test * feat: start implementing or groups in wait for * feat: test of or groups on durable context * fix: lint * chore: gen * fix: lint * fix: branching hell
11 lines
232 B
Python
11 lines
232 B
Python
import time
|
|
|
|
from examples.conditions.worker import hatchet, task_condition_workflow
|
|
|
|
task_condition_workflow.run_no_wait()
|
|
|
|
time.sleep(5)
|
|
|
|
hatchet.event.push("skip_on_event:skip", {})
|
|
hatchet.event.push("wait_for_event:start", {})
|