Nick Gauthier

Results 53 comments of Nick Gauthier

I don't have the time to upgrade it but if you submit an update I'll review and merge. On Sun, Apr 8, 2018, 6:26 PM Erik Axel Nielsen wrote: >...

I agree completely. This is on my list, but I may not get to it for a while as we don't need this feature day-to-day. If you're interested in implementing...

Sounds good. I was also thinking about have a "preload" option where you can have it load your test/spec helper. Then in the helper you can modify your load path....

Yeah I was thinking about including test and spec in the load path. The only possible gotcha is that cucumber likes to include lots of stuff for you. Hopefully it...

@Adam yeah just set your load path. Maybe you could put this in the rakefile: ``` $:

There is also an undocumented feature: https://github.com/ngauthier/hydra/blob/master/lib/hydra/worker.rb#L32 You could put: ``` $:

Hey Marc, After you Ctrl+c the master, it closes connections to the workers. Then the workers don't know the connection is closed until they try to read or write from...

Hydra closes the connection to the worker on a CTRL+C. When the worker detects the closed connection (when it finished the current job) it will exit. Sometimes there is a...

I have noticed this as well. Certain exceptions and crashes are not getting caught by hydra, which kills the runner. Hydra's worker is not properly detecting a runner crash and...

I'd accept a patch on 0.20.0 sure. We'd just branch on it and make patches. I'd also want to add it on the current version and release a patch. As...