-
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!) |
Beta Was this translation helpful? Give feedback.
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 |
Beta Was this translation helpful? Give feedback.
-
Good info. Thx. |
Beta Was this translation helpful? Give feedback.
-
It's a good idea to document this behavior. |
Beta Was this translation helpful? Give feedback.
You are returning from a request handler without responding. So did you attach an abort handler like it tells you to?
examples/VideoStreamer.js