Modified based on the review comments - 2

Signed-off-by: Amulya Varote <amulyavarote@MININT-8V4CL0S.redmond.corp.microsoft.com>
This commit is contained in:
Amulya Varote 2021-12-06 22:20:23 -08:00 committed by Amulya Varote
parent 080b106d5e
commit 1b5d57ea64
1 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ spec:
Now configure your application to receive incoming events. If using HTTP, you need to listen on a `POST` endpoint with the name of the binding as specified in `metadata.name` in the file.
Below are code examples that leverage Dapr SDKs for output binding.
Below are code examples that leverage Dapr SDKs to demonstrate an output binding.
{{< tabs Dotnet Java Python Go Javascript>}}
@ -281,7 +281,7 @@ In order to tell Dapr that you successfully processed an event in your applicati
### Rejecting an event
In order to tell Dapr that the event was not processed correctly in your application and schedule it for redelivery, return any response other than `200 OK`. For example, a `500 Error`.
In order to tell Dapr that the event was not processed correctly in your application and schedule it for redelivery and handle it gracefully using logs or exceptions.
### Specifying a custom route