Replies: 1 comment 2 replies
-
You have to provide |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I've encountered an issue of late where for some logical business reason, a streamed response returns an error, my server terminates with an
PromiseRejectionHandledWarning: Promise rejection was handled asynchronously (rejection id: 259)
error because the source of that error is a streamed response.The simple fix here would be to
await nonCriticalData
and handle the error in the catch block but I want to be sure if there is a way to mitigate against this without sacrificing the streaming approach?.Beta Was this translation helpful? Give feedback.
All reactions