-
Notifications
You must be signed in to change notification settings - Fork 231
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
0.15.14 stopped working: read unix ->: EOF #641
Comments
I have the same issue when I have byebug version |
Facing the same issue. Uninstalling v0.15.14 and using v0.15.13 also works for me. Seems like this project could do with adding further unit, perhaps even some integration, tests to catch this kind of regression. |
What probably is the cause here is that the new version of zeus does require some gems which are incompatible with the gems currently installed and since it likely is installed outside bundler the require fails. Take a look at what |
Fails for me as well. The behavior is erratic. I've tried uninstall/reinstall, upgrade/downgrade byebug. The first successful attempt was when I installed v0.15.3. After that, I've tried reinstalling (after several previous attempts) v0.15.4, and now it's working. |
We had issues with the following dependencies:
|
Also posted to this closed issue. I'm now getting failures on We're now on Ruby 2.4.2 for over a month (still on rbenv) and Bundler version 1.15.4. Possibly related change: I'm on OS X Sierra and yesterday I had updated Xcode and command line tools to Version 9.0.1 and 9.0 respectively... |
Here's the log output on 0.15.14 -- seems to crash when it tries to start Bundler:
I've tracked this down to possibly the ffi gem being required during the bundler step (it was added recently). |
Started looking at this again. It's not ffi, it's definitely rbnacl-libsodium, though I'm not clear why. |
Figured out the problem, rbnacl requires a local libsodium installed (through brew or something), but we were using rbnacl-libsodium to handle this dependancy. It would have been helpful to get more logging output to debug this. I ended up walking through the custom_plan.rb load steps in an IRB session to see what was failing. |
This always happens when I forget to bundle following changes to my Gemfile. The error message could be a little more descriptive. |
In case this helps anyone, I ran into this consistently and in my case narrowed it down to having added the require "bundler/setup" if File.exist?(ENV["BUNDLE_GEMFILE"])
-require 'bootsnap/setup'
+require 'bootsnap/setup' unless ENV["ZEUS_MASTER_FD"] |
I have been using I can help w that if you lack the time. |
0.15.13 is fine. Updated to 0.15.14 and it gives me this:
On MacOS Sierra. Got back to 0.15.13 and it's working.
The text was updated successfully, but these errors were encountered: