We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Using Graph.render, there are some race conditions with graphviz.on("exit", …), where exit fires before the graphviz.stdout is ended.
graphviz.on("exit", …)
exit
So instead of using exit, you can use close in node 0.8. So a solution would be, in graph.js:373
close
var version = process.version.split('.')[1] graphviz.on(version < 8 ? 'exit' : 'close', function(code) { // ... });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using Graph.render, there are some race conditions with
graphviz.on("exit", …)
, whereexit
fires before the graphviz.stdout is ended.So instead of using
exit
, you can useclose
in node 0.8. So a solution would be, in graph.js:373The text was updated successfully, but these errors were encountered: