azure-docs
azure-docs copied to clipboard
Example for publishEventTypes in Durable Functions 2.x is incorrect
Examples listed are:
"publishEventTypes": [
"Started",
"Pending",
"Failed",
"Terminated"
]
"Pending" is a unsupported type. The supported type "Completed" is missing
So correct example would be:
"PublishEventTypes": [
"Started",
"Completed",
"Failed",
"Terminated"
]
Document Details
⚠ Do not edit this section. It is required for learn.microsoft.com ➟ GitHub issue linking.
- ID: 4b2c8f85-9416-d9f2-e082-b1b15961d810
- Version Independent ID: e987c477-36ef-76b9-6dbd-db76fd291e7b
- Content: Bindings for Durable Functions - Azure
- Content Source: articles/azure-functions/durable/durable-functions-bindings.md
- Service: azure-functions
- Sub-service: durable
- GitHub Login: @ggailey777
- Microsoft Alias: azfuncdf
@misteriks Thanks for your feedback! We will investigate and update as appropriate.
Thanks for calling this out @misteriks. There's a pending update for the doc.