-
Notifications
You must be signed in to change notification settings - Fork 8
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
Error: write EPIPE when writing 'start\n' to this[monitor] #25
Comments
I just tried running the program without a logger, and it worked just fine. Are you on the latest version? There was a piping error that I fixed a couple days ago related to the exe path being set up incorrectly. |
Just double checked from a fresh install, using both PowerShell & Command Prompt in administrator mode. The exe path is whitelisted in my firewall too. Windows 10.0.18362 Build 18362.
test.js const MachinaFFXIV = require('node-machina-ffxiv');
const Machina = new MachinaFFXIV();
Machina.start(() => {
console.log("Machina started!");
}); output
|
Looking into it more, just the existence of the options object in the initialization will prevent me from getting this error... |
it looks like, if the options object isn't passed, then the exe is being called without any arguments. But if options exist, then the arguments are [ '--Port', 13346 ]. Could that be the cause? |
That certainly sounds right, I'll fix that real quick. |
429101f should fix this issue. |
I wasn't really able to track down the root cause (looks similar to nodejs/node#947), but I found that initializing Machina w/ the logging option
will make it so this error does not occur, oddly enough.
The text was updated successfully, but these errors were encountered: