Skip to content

Commit 25d3847

Browse files
committed
fix: remove optional waits and clarify
Signed-off-by: Casper Nielsen <casper@diagrid.io>
1 parent e066185 commit 25d3847

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

daprdocs/content/en/developing-applications/dapr-agents/dapr-agents-core-concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ The snippets below reuse this `travel_planner` instance to illustrate each mode.
272272

273273
#### 1. Ad-hoc execution with `runner.run(...)`
274274

275-
Use `run` when you want to trigger a durable workflow directly from Python code (tests, CLIs, notebooks, etc.). The runner locates the agent's `@workflow_entry`, schedules it, and optionally waits for completion.
275+
Use `run` when you want to trigger a durable workflow directly from Python code (tests, CLIs, notebooks, etc.). The runner locates the agent's `@workflow_entry`, and schedules it. The `.run()` command is a blocking call that triggers the agent and and waits for its completion.
276276

277277
```python
278278
result = await runner.run(

0 commit comments

Comments
 (0)