|
This server is excellent under many circumstances. e.g. request arrives and we need to fetch some data before responding: or request arrives and we need to call out to an external service in order to satisfy it: At this point the server reports: "Error: Returning from a request handler without responding or attaching an abort handler is forbidden!" That's pretty interesting. Any ideas how to fix? (nb this may well be 'me' being supremely dopey!) |
Replies: 3 comments 1 reply
You are returning from a request handler without responding. So did you attach an abort handler like it tells you to? examples/VideoStreamer.js |
|
Good info. Thx. |
|
It's a good idea to document this behavior. |
You are returning from a request handler without responding. So did you attach an abort handler like it tells you to?
examples/VideoStreamer.js