-
Notifications
You must be signed in to change notification settings - Fork 280
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
Problem with zeus and rollbar #30
Comments
Thanks Brad. What version of Rake do you have installed? I tried installing zeus 0.13.3 and rollbar 0.9.3, but it worked fine. Was able to start up the zeus server, run |
Rake 10.0.3 Looking at the rake source, it looks to me like require "rake" should be requiring rake/application. Weird zeus stuff going on here I think 😦 |
Hm, yeah. Rake 10.0.3 here as well. |
Ok the solution on our end seemed to be to explicitly add rake to our gemfile. I guess we were just relying on other gems to pull it in before. Adding it explicitly ensures it's loaded and ready to go by the time rollbar needs it. Thanks for your help @brianr |
Interesting. Nice find. I'll add a note in the readme. |
I'm using rollbar 0.9.3 and zeus 0.13.3. The zeus server fails to start up and I end up with the error below. #25 mentioned adding "require 'rake'" to spec_helper, but this is failing in dev and test environments.
Adding require 'rake' to various points in our app load didn't seem to help, but ultimately I've been able to fix the problem by adding this line to the top of rollbar/rake.rb:
Now obviously that isn't really getting to the bottom of this issue, so I'll keep doing some research into this, but figure there's no harm opening up a ticket in case somebody else comes across the same problem.
The text was updated successfully, but these errors were encountered: