Skip to content
Dev.to

What Temporal Can't Do: Human Approval...

Temporal is excellent at durable execution. I'm not here to argue otherwise. But try adding a human approval step to a Temporal workflow. Something like: agent validates a database migration, then an SRE needs to approve before it runs. What This Looks Like in Temporal @workflow.defn class ApprovalWorkflow: def __init__(self): self.approved = None @workflow.run async def run(self, change): result = await workflow.execute_activity( validate_change, change, start_to_close_timeout=timedelta(minutes
Read original on dev.to
0
0

Comment

Sign in to join the discussion.

Loading comments…

Related

Liked this? Start your own feed.

Your own feed is waiting.
0
0