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
## Fatal error in v8_Promise_Result# Promise is still pending#
I suspect that the issue is caused by not entering the deno_core event loop when using let scope = &mut self.v8_runtime.handle_scope() and then calling let result = default_function.call(scope, default_function.into(), &[args]);.
The text was updated successfully, but these errors were encountered:
The above is an example I wrote for calling the method, which runs without issues, but it throws an error when I register an asynchronous method.
*** Registering the plugin here will throw an error.***
context.js
The error message is as follows.
I suspect that the issue is caused by not entering the deno_core event loop when using
let scope = &mut self.v8_runtime.handle_scope()
and then callinglet result = default_function.call(scope, default_function.into(), &[args]);
.The text was updated successfully, but these errors were encountered: