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
Fundamentally the same issue as described in #1095.
After await Isolate.spawn() has returned the isolate was created but the entrypoint hasn't necessarily run yet, so an isolate.kill() may kill it before the entrypoint is run.
I'd suggest making the isolate communicate back to the main isolate that it started running the entrypoint (something similar to eccdd5c)
The text was updated successfully, but these errors were encountered:
Fundamentally the same issue as described in #1095.
After
await Isolate.spawn()
has returned the isolate was created but the entrypoint hasn't necessarily run yet, so anisolate.kill()
may kill it before the entrypoint is run.I'd suggest making the isolate communicate back to the main isolate that it started running the entrypoint (something similar to eccdd5c)
The text was updated successfully, but these errors were encountered: