Skip to content

Commit 0a9bbce

Browse files
authored
Merge pull request #123063 from vincelee888/patch-2
Fix syntax error and make documentation clearer in functions-bindings-event-grid-output.md
2 parents 40d9f34 + 6b5f7ea commit 0a9bbce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/azure-functions/functions-bindings-event-grid-output.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Starting in version 3.3.0, it's possible to use Microsoft Entra ID when authenti
149149
[FunctionName("EventGridAsyncOutput")]
150150
public static async Task Run(
151151
[TimerTrigger("0 */5 * * * *")] TimerInfo myTimer,
152-
[EventGrid(Connection = "MyEventGridConnection"]IAsyncCollector<CloudEvent> outputEvents,
152+
[EventGrid(Connection = "MyEventGridConnection")]IAsyncCollector<CloudEvent> outputEvents,
153153
ILogger log)
154154
{
155155
for (var i = 0; i < 3; i++)
@@ -165,7 +165,7 @@ When you use the `Connection` property, the `topicEndpointUri` must be specified
165165
```json
166166
{
167167
"Values": {
168-
"myConnection__topicEndpointUri": "{topicEndpointUri}"
168+
"MyEventGridConnection__topicEndpointUri": "{topicEndpointUri}"
169169
}
170170
}
171171
```

0 commit comments

Comments
 (0)