Re: Adding newrelic crashes my rails 3 app

2010-11-08 Thread nader
I've got the same thing happening and opened a case with new relic. Haven't heard back yet. They told me to remove the new relic addon in the mean time On Nov 7, 8:11 pm, JDeville jeffdevi...@gmail.com wrote: Basically, I update my gemfile with: gem 'newrelic_rpm' push, add the new relic

Re: Adding newrelic crashes my rails 3 app

2010-11-08 Thread JDeville
Thanks Nader. Would you mind updating me when you get a reply? On Nov 8, 9:24 am, nader iamna...@gmail.com wrote: I've got the same thing happening and opened a case with new relic. Haven't heard back yet. They told me to remove the new relic addon in the mean time On Nov 7, 8:11 pm,

Re: Adding newrelic crashes my rails 3 app

2010-11-08 Thread nader
Will do On Nov 8, 6:35 am, JDeville jeffdevi...@gmail.com wrote: Thanks Nader.  Would you mind updating me when you get a reply? On Nov 8, 9:24 am, nader iamna...@gmail.com wrote: I've got the same thing happening and opened a case with new relic. Haven't heard back yet. They told

I added BUNDLE_WITHOUT=development test, but Heroku still installs everything

2010-11-08 Thread Volkan Unsal
I wanted Heroku's bundler to ignore some gems I have installed. It doesn't manage to do that, and as a result I am getting lots of errors. -- You received this message because you are subscribed to the Google Groups Heroku group. To post to this group, send email to her...@googlegroups.com. To

multiple databases

2010-11-08 Thread linojon
Hi, my app needs to access an external database (cloud-accessible postgres database) and a local one. Generally the external database is accessed via admin pages (and rake tasks) to import data into the local database. I've been using the connection_ninja gem for this. Is there a way to deploy

Re: Getting a visitors ip address in your web app

2010-11-08 Thread joshmckin
Anything new with this? I have an app which is complete behind SSL (hostname SSL) and we have to implement IP logging. Do we need to change/upgrade our ssl service ? On Oct 5, 1:26 pm, marcel mpoi...@gmail.com wrote: Or just request.env.ip

Re: I added BUNDLE_WITHOUT=development test, but Heroku still installs everything

2010-11-08 Thread Chris Hanks
Yes, this started happening for me on Friday (worked fine up until then). and it looks like it's still going on. When I push I see Using --without development test, but it tries to install all the development/test gems anyway (which it can't, for me, because Heroku can't handle ruby-debug19). I

Re: I added BUNDLE_WITHOUT=development test, but Heroku still installs everything

2010-11-08 Thread Oren Teich
Bundlr 1.0.3 changed the syntax for without. We are deploying a hotfix tomorrow. In the meantime, seperate the groups you don't want deployed with a : instead of a space. e.g. heroku config:add BUNDLER_WITHUOUT=development:test Oren On Mon, Nov 8, 2010 at 12:03 PM, Chris Hanks

Re: I added BUNDLE_WITHOUT=development test, but Heroku still installs everything

2010-11-08 Thread Chris Hanks
It works! Thanks, Oren. On Nov 8, 12:05 pm, Oren Teich o...@heroku.com wrote: Bundlr 1.0.3 changed the syntax for without.  We are deploying a hotfix tomorrow.  In the meantime, seperate the groups you don't want deployed with a : instead of a space.  e.g. heroku config:add

Re: Devise on Heroku: Erroneous links in emails

2010-11-08 Thread adriaan
Thanks Nina, that was exactly the issue! All is working nicely now. Cheers, Adriaan On Nov 9, 5:12 am, Nin newcome...@gmail.com wrote: I suggest looking at your config/environments/production.rb file. There should be a line there, configuring the action_mailer. Should be something like:

Re: Adding newrelic crashes my rails 3 app

2010-11-08 Thread nader
just remove the gem from your gemfile and you should be ok. the addon is self contained, so you don't need to add anything to your gemfile On Nov 8, 7:37 am, nader iamna...@gmail.com wrote: Will do On Nov 8, 6:35 am, JDeville jeffdevi...@gmail.com wrote: Thanks Nader.  Would you mind

best practices for perf testing

2010-11-08 Thread JDeville
I'm about to start putting a lot of work into performance testing of my app, and I was wondering if anyone had any best practices in this area. Specifically, from where are you running the tests (an EC2 instance?), what tools are you using, have you managed to automate the tests to any degree?