-
Notifications
You must be signed in to change notification settings - Fork 29
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
hivemind does not work correctly with webpack-dev-server. #3
Comments
Hi Vlad, glad to see you here! Sorry, I can't reproduce the bug (http://img.darthsim.me/iq8tr.png). Do you use the latest version of Hivemind? |
Hey, yeah, last version
okay, looks like for the current project it does not work :( |
Does https://github.com/DarthSim/overmind work the same way? |
Yeah, overmind works for me :), thanks for great tools! |
@DarthSim This issue is probably because you not only let sub-processes know they are in tty session, but also that they are in interactive terminal what is a lie |
This issue is still relevant and still exists ;-) In fact, even in overmind, the issue is similar. To get |
As I said, I can't reproduce the issue. I'll open it with |
For me this error happened after I had the bootstrap-vue module. Without it, it works fine. And more, if I comment the bootstrap-vue import line, start the server and after uncomment the line, webpack will work just fine. But if I let the import statement there, wepack won't compile and I've to start the rails server and webpack server separately for it to work. My hivemind version is 1.0.4. |
I also get this problem on Hivemind version 1.0.6. Webpack dev server runs fine in overmind, but not in hivemind. I haven't gone super deep into debugging like trying to watch the actual output of the pty for each process, but just by watching hiveminds output it seems like the webpack dev server just hangs after printing this line:
It then just sits there forever and nothing happens. Could an option be added to hivemind to specify whether a process should be tricked into thinking its on an interactive tty or not? I feel like that does have something to do with this. This is tangentially related but I would also personally love the feature in a process runner to strip certain terminal escape codes from output. Many tools like webpack's dev server send a code to clear the terminal before printing something. This unfortunately wipes out whatever was visible in the terminal. I think it would be doable to just strip certain codes out of the process's output though. |
You can do this without Overmind. Just add
This will redirect the process's output to |
Interesting, but unfortunately that does not fix the problem between hivemind and webpack-dev-server. It still ends up hanging the webpack dev server process unresponsively. I'm sure this is more of a case of webpack-dev-server being weird then hivemind doing anything wrong, but it'd be sweet if we could figure out the why and get a workaround in the README, considering how popular webpack is. |
Hello,
thanks for this great process manager!
After rails 5.1 introduced webpack, I tried to keep webpack-dev-server and rails 5 running in parallel. Unfortinually, with hivemind it does not work, webpack-dev-server just does not produce any output after starting.
Procfile:
Output after typing
hivemind
If to launch 2 processes each in an own tab, it works.
The text was updated successfully, but these errors were encountered: