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
I have some code that creates a VM / isolate once, and then pass the isolate into a go routine. Inside this go routine, I create a context from the isolate, and create a new object template.
This works fine for a little while, but then panics (as more than a handful go routines run concurrently). If I pass in a brand new isolate to each instance of the go routine, the panic won't happen.
Am I wrong thinking this ought to work?
The text was updated successfully, but these errors were encountered:
I have some code that creates a VM / isolate once, and then pass the isolate into a go routine. Inside this go routine, I create a context from the isolate, and create a new object template.
This works fine for a little while, but then panics (as more than a handful go routines run concurrently). If I pass in a brand new isolate to each instance of the go routine, the panic won't happen.
Am I wrong thinking this ought to work?
The text was updated successfully, but these errors were encountered: