Skip to content

Commit ccc3fa3

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

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
@@ -228,7 +228,7 @@ Now we can move the **write logic** into the event handlers.
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.
230230
> - HTTP Response in `CommandHandlers` can still be sent back to the client.
231-
> - HTTP Response in `EventHandlers` cannot. If you want to get feedback for the client you could use [WebSocket](/websockets/gateways), [SSE](/techniques/server-sent-events), or whatever solution you choose.
231+
> - 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
234234

0 commit comments

Comments
 (0)