You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This has been coming up several times already; I need to finally fix it. The problem is that we use unwrap when trying to cast opId to Uint32 - this panics if opId is undefined. Such situation should be handled gracefully by returning error to JS or adding assert on opId in Deno.core.dispatch - whichever will have smaller impact on performace.
This has been coming up several times already; I need to finally fix it. The problem is that we use
unwrap
when trying to castopId
toUint32
- this panics ifopId
is undefined. Such situation should be handled gracefully by returning error to JS or adding assert onopId
inDeno.core.dispatch
- whichever will have smaller impact on performace.https://github.com/denoland/deno/pull/4118/checks?check_run_id=466535527
CC @ry
The text was updated successfully, but these errors were encountered: