Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Rails 3.0.9 app that, once it is deployed, suffers from a bunch of ActiveModel::MissingAttributeErrors that crop up causing 500s. The errors occur fairly randomly, sometimes a page will load, other times it won't, but the attributes are all existing attributes in the database and should be found.

The strange part is that after a while, the errors go away. Suddenly, they stop causing an issue.

I have searched about for a solution to this, but this error mostly occurs either when someone has done Model.all(:select => 'column_x,column_y') and are calling for column_z or when they are using cache_money. I am doing neither of these things.

Can anyone help?

share|improve this question

3 Answers

You are most likely suffering from the problem described here http://www.tatvartha.com/2011/03/activerecordmissingattributeerror-missing-attribute-a-bug-or-a-features/

You probably have a query that doesn't return all the columns (ie. uses :select) and then cache_money or some other ActiveRecord plugin uses an after_initialize callback, which executes whenever a new ActiveRecord object is created (ie. when fetched from the database).

In that initialize callback, something tries to access or use an attribute that wasn't included in the :select. You'd expect this to return nil for that attribute, but an ActiveRecord::MissingAttributeError is thrown instead.

You can rescue ActiveRecord::MissingAttributeError like the article suggests or patch the plugin(s) to use has_attribute?(:attribute_name) before they try to access or modify the attribute.

share|improve this answer
Thanks, but that doesn't seem to be the case. I don't have any caching or queries that don't return all the columns. – philnash Jul 27 '11 at 16:50
Oh, sorry I miss read your original question. Please describe the errors you are getting more accurately, ie. provide the log file output. It should tip off which attribute/column in which model is giving the ActiveModel::MissingAttributeError. – randomguy Jul 27 '11 at 16:54
+1 This may not have solved OP's question, but it is exactly the issue I was facing. – Nathan Nov 8 '12 at 17:22

you need to add line

rescue ActiveRecord::MissingAttributeError 

in your after_initialize() method of the model

share|improve this answer

I found an interesting take on this that resulted in the same error. In an attempt to reuse code we subclasses a presenters class with a presenters class that performed grouping to use in a graph view.

To simplify, it was something like:

class PostPresenter 
  def query
    Post.where(...stuff....).includes(:wombat)
  end
end

The the aggregator did something like the following to build a table of posts per day:

class AggregatePostPresenter < PostPresenter
  def group_query
    query.select('count(*) as cnt, date(created_at)').group('date(created_at)')
  end
end

A call to "group_query" results in an ActiveModel::MissingAttributeError since, I think, the attempt to "includes" Wombat fails because "wombat_id" wasn't in the attributes included in the "select".

This is probably not your answer, however, since it happens regardless of whether or not cache is enabled.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.