-
Notifications
You must be signed in to change notification settings - Fork 664
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
notify called synchronously #812
Comments
This error is typically only seen by internal APIs. It's a warning for when we start an event flowing through the signal graph while already partially through the graph. The result is that things get out of sync and the previous frame will "jump ahead" of the one in front. I am not sure why you'd be seeing it using ports though. I would guess that the locking mechanism we are using is rather coarse grained at the moment or something. In any case you can get around this with a |
I get this error any time I write a program that crashes. |
Yeah it went away as soon as I finished fixing my ports stuff...just reporting it here in case being able to reproduce it proves useful for runtime development. |
Sounds like an opportunity to check ports and provide a better error message? |
I don't think there's enough to go on here, so I am going to close this for now. If we can narrow this down to a more specific issue or recommendation, let's open a new issue. |
Just following the error message's instructions... 😉
Steps to reproduce:
dreamwriter-elm
: rtfeldman/dreamwriter@34f8d9dnpm install
rm -rf node_modules/grunt-elm/test
after doingnpm install
to work around a grunt-elm bug I haven't fixed yet (Don't accidentally build grunt-elm's tests rtfeldman/grunt-elm#3)npm install grunt-cli
if you don't already have the Grunt CLI installed globally.grunt
to build Dreamwriterlocalhost:8000
and click thenew
button in the upper-leftThis is definitely caused by my having not finished correctly implementing the JS port yet, but it does consistently reproduce an error that urged me to report it, so...here we are. 😸
The text was updated successfully, but these errors were encountered: