Open lisovskyvlad opened 7 years ago
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
$ hivemind -v
Hivemind version 1.0.1
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 webpack-dev-server
to do anything I have to connect to the tmux session and hit a key.
As I said, I can't reproduce the issue. I'll open it with help wanted
label.
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:
Starting development server...
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.
Could an option be added to hivemind to specify whether a process should be tricked into thinking its on an interactive tty or not?
You can do this without Overmind. Just add | cat
to the command like this:
assets: bin/webpack-dev-server | cat
This will redirect the process's output to cat
disconnecting the process from tty/pty.
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.