Skip to content

Commit ce32f3e

Browse files
authored
Merge pull request #192365 from spelluru/patch-87
CloudEvents schema is supported now
2 parents 48f4a94 + c2a3063 commit ce32f3e

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

articles/event-grid/handler-functions.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@ We recommend that you use the first approach (Event Grid trigger) as it has the
1919
- Event Grid automatically validates Event Grid triggers. With generic HTTP triggers, you must implement the [validation response](webhook-event-delivery.md) yourself.
2020
- Event Grid automatically adjusts the rate at which events are delivered to a function triggered by an Event Grid event based on the perceived rate at which the function can process events. This rate match feature averts delivery errors that stem from the inability of a function to process events as the function’s event processing rate can vary over time. To improve efficiency at high throughput, enable batching on the event subscription. For more information, see [Enable batching](#enable-batching).
2121

22-
> [!NOTE]
23-
> Currently, you can't use an Event Grid trigger for a function app when the event is delivered in the **CloudEvents** schema. Instead, use an HTTP trigger.
24-
2522
## Tutorials
2623

2724
|Title |Description |

includes/functions-event-grid-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ Event Grid is an Azure service that sends HTTP requests to notify you about even
1010

1111
Event *handlers* receive and process events. Azure Functions is one of several [Azure services that have built-in support for handling Event Grid events](../articles/event-grid/overview.md#event-handlers). Functions provides an Event Grid trigger, which invokes a function when an event is received from Event Grid. A similar output binding can be used to send events from your function to an [Event Grid custom topic](../articles/event-grid/post-to-custom-topic.md).
1212

13-
You can also use an HTTP trigger to handle Event Grid Events. For example, you can't currently use an Event Grid trigger when the event is delivered in the [CloudEvents schema](../articles/event-grid/cloudevents-schema.md#azure-functions). When you need to use this schema, you should instead use an HTTP trigger. To learn more, see [Receive events to an HTTP endpoint](../articles/event-grid/receive-events.md).
13+
You can also use an HTTP trigger to handle Event Grid Events. To learn more, see [Receive events to an HTTP endpoint](../articles/event-grid/receive-events.md). We recommend using the Event Grid trigger over HTTP trigger.

0 commit comments

Comments
 (0)