azure-docs icon indicating copy to clipboard operation
azure-docs copied to clipboard

Example for publishEventTypes in Durable Functions 2.x is incorrect

Open misteriks opened this issue 11 months ago • 1 comments

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.

misteriks avatar Mar 24 '24 08:03 misteriks

@misteriks Thanks for your feedback! We will investigate and update as appropriate.

Naveenommi-MSFT avatar Mar 24 '24 17:03 Naveenommi-MSFT

Thanks for calling this out @misteriks. There's a pending update for the doc.

RyanHill-MSFT avatar Mar 28 '24 13:03 RyanHill-MSFT