Skip to content

Commit a60d5d6

Browse files
CDelgrangejmcdo29
andauthored
Update content/recipes/cqrs.md
Co-authored-by: Jay McDoniel <[email protected]>
1 parent ccc3fa3 commit a60d5d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/recipes/cqrs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ Now we can move the **write logic** into the event handlers.
227227
> info **Hint** Be aware that when you start using event handlers you get out of the traditional HTTP web context.
228228
> - Errors in `CommandHandlers` can still be caught by built-in [Exception filters](/exception-filters).
229229
> - Errors in `EventHandlers` can't be caught by Exception filters: you will have to handle them manually. Either by a simple `try/catch`, using [Sagas](/recipes/cqrs#sagas) by triggering a compensating event, or whatever other solution you choose.
230-
> - HTTP Response in `CommandHandlers` can still be sent back to the client.
230+
> - HTTP Responses in `CommandHandlers` can still be sent back to the client.
231231
> - HTTP Responses in `EventHandlers` cannot. If you want to send information to the client you could use [WebSocket](/websockets/gateways), [SSE](/techniques/server-sent-events), or whatever other solution you choose.
232232
233233
#### Sagas

0 commit comments

Comments
 (0)