-
-
Notifications
You must be signed in to change notification settings - Fork 667
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crash after a while (at least on Safari + Wasm) #678
Comments
hajimehoshi
changed the title
Crash after a while
Crash after a while (at least on Safari + Wasm)
Sep 10, 2018
Sometimes I see this message, but still am not sure this is related. |
Now the crash doesn't happen. |
With Go 1.12 beta2, OOM happend :-/
with a simple test code: package main
import (
"syscall/js"
)
func main() {
f := js.FuncOf(func(this js.Value, args []js.Value) interface{} {
println("hi")
return nil
})
defer f.Release()
js.Global().Call("setTimeout", f, 1000)
select {}
} |
golang/go#27462 Looks like this is fixed |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Crash with the message "This webpage was reloaded because a problem occurred". I suspect it is a memory leak, but I don't know.
The text was updated successfully, but these errors were encountered: