So i have some instance variables being set in my rails 3.1 controller that are simply failing to exist when i try to call them in my views on heroku (they work fine locally).
With a similar other model with a similar data structure and the same instance variables, it works fine - which makes it all the weirder. Also some instance vars are getting through ok - so i'm struggling to find out what is causing this problem.
Here's a quick example
class PointsController < ApplicationController
def show
@point = Point.find(params[:id])
@area = @point.area
@zoom = 15
@ff = 0
@ff = params[:ff].to_i if params[:ff] and params[:ff].to_i
end
end
In my view, if i put: <%= @point.name %> or <%= @ff %> - they work both on local and heroku environments and the values are returned BUT if i put in:
<%= @zoom %> and <%= @area %> these work locally, but return nothing in the heroku environment. it's just totally random.
Any ideas?
Thanks!
@zoomcase is completely independent of anything but ruby and really core Rails, and the fact that some work and some don't suggests some sort of memory corruption. Haven't used Heroku in a while -- is there a way to reset the instance? I got nothin' else. You're right -- it's broken. – Tom Harrison Jr Nov 16 '12 at 2:09heroku restart, (2)logger.debug @zoom,heroku logs --tail, (3)heroku config:add RACK_ENV=developmentand see if you get error messages – Andrew Nov 16 '12 at 2:48