Open
Description
Versions
- Convergence Version: 1.0.0-rc.6
Describe the Bug
When making a rest call to /chats/<chat-id>/events
for a chat that does not exist, a request timeout occurs. This is because the request goes to a ChatActor which is a sharded actor. This actor boots up and immediately determines that the chat does not exist and shuts down. It does this without responding to the incoming request.
Expected Behavior
There should still be a response back to the chat rest actor so a "not_found" HTTP response can be given.