Skip to content

Commit dbd57a9

Browse files
committed
small edit
1 parent d227bed commit dbd57a9

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

articles/azure-functions/durable/durable-functions-sequence.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,7 @@ The `context` object lets you call other *activity* functions and pass input par
9292

9393
#### function.json
9494

95-
If you use Visual Studio Code or the Azure portal for development, here's the content of the *function.json* file for the orchestrator function. Most orchestrator *function.json* files look almost exactly like this.
96-
97-
[!code-json[dajusto/add-v2-samples](~/samples-durable-functions-python/samples/function_chaining/E1_HelloSequence/function.json)]
98-
99-
The important thing is the `orchestrationTrigger` binding type. All orchestrator functions must use this trigger type.
95+
[!code-json[dajusto/add-v2-samples](~/samples-durable-functions-python/samples-v2/function_app.py)]
10096

10197
> [!WARNING]
10298
> To abide by the "no I/O" rule of orchestrator functions, don't use any input or output bindings when using the `orchestrationTrigger` trigger binding. If other input or output bindings are needed, they should instead be used in the context of `activityTrigger` functions, which are called by the orchestrator. For more information, see the [orchestrator function code constraints](durable-functions-code-constraints.md) article.

0 commit comments

Comments
 (0)