Re: NewRelic not working after upgrade to Cedar from Bamboo

2012-03-17 Thread Joe Dzikiewicz
I've had a similar issue. I'm running an app on Cedar. For me, when I have the NewRelic gem installed, none of the Rails log messages show up in heroku logs. I've danced a couple of rounds with Heroku support on this and still haven't gotten to any resolution. Joe -- You received this

Re: NewRelic not working after upgrade to Cedar from Bamboo

2012-03-17 Thread Jonathan Tushman
I figure it out. Change your proc file's web line to as follows: web: bundle exec thin start -R config.ru -e $RACK_ENV -p $PORT On Sat, Mar 17, 2012 at 9:49 AM, Joe Dzikiewicz j...@dzikiewicz.com wrote: I've had a similar issue. I'm running an app on Cedar. For me, when I have the NewRelic

Rails parameter question...

2012-03-17 Thread Carson Gross
Hey Guys, This is a rails question, so please ignore if that doesn't interest you. Does anyone know if there is a way to make rails *not* parse the body of an XML post to a given controller method? I've been googling for an hour now and can't figure it out. Basically we've got some huge XML

Re: Rails parameter question...

2012-03-17 Thread Jeff Schmitz
Does Rails parse the body prior to any before_filters run? Jeff On Mar 17, 2012, at 12:57 PM, Carson Gross carsongr...@gmail.com wrote: Hey Guys, This is a rails question, so please ignore if that doesn't interest you. Does anyone know if there is a way to make rails *not* parse the

Re: Rails parameter question...

2012-03-17 Thread Carson Gross
According to my tests, yes, the parameter parsing happens before the before_filters are run. Thanks, Carson On Mar 17, 11:15 am, Jeff Schmitz jeffrey.j.schm...@gmail.com wrote: Does Rails parse the body prior to any before_filters run? Jeff On Mar 17, 2012, at 12:57 PM, Carson  Gross

Re: Rails parameter question...

2012-03-17 Thread Jeff Schmitz
Can you do this part as a rack app? Jeff On Mar 17, 2012, at 4:32 PM, Carson Gross carsongr...@gmail.com wrote: According to my tests, yes, the parameter parsing happens before the before_filters are run. Thanks, Carson On Mar 17, 11:15 am, Jeff Schmitz jeffrey.j.schm...@gmail.com

Re: Rails parameter question...

2012-03-17 Thread Dan Croak
Peeking into the Rails 2.3.8, params parsing is handled by ActionContoller::ParamsParser, which is located in actionpack/lib/action_controller/params_parser.rb: https://github.com/rails/rails/blob/240f4e944cd90fca138aba8467456043952110cc/actionpack/lib/action_controller/params_parser.rb