I have a small site that sorts news topics by date of submission to the second. Locally, this works fine. Even when rapidly posting stories in a row there is a difference in the time stamp.

Example:

Submitted Fri Mar 25 14:31:09 2011
Submitted Fri Mar 25 14:30:45 2011
Submitted Fri Mar 25 14:30:23 2011

However, once the code is pushed to heroku and the database is set up with MongoHQ the seconds value seems ignored or frozen.

Example Document DateTime value:

added_on 03/14/2011 09:58 AM

Example timestamps:

Submitted Thu Mar 24 13:48:40 2011
Submitted Thu Mar 24 13:48:40 2011
Submitted Thu Mar 24 13:48:40 2011
Submitted Thu Mar 24 13:48:40 2011

It appears the seconds value isn't updating?

Here is the model code,

class Post
  include Mongoid::Document
  field :link
  field :title
  field :synopsis
  field :added_on, :type => DateTime, :default => DateTime.now
  field :poster
  field :category

  validates_presence_of :link
  validates_presence_of :title
  validates_presence_of :synopsis
  validates_presence_of :category

  validates_uniqueness_of :link
  validates_uniqueness_of :title

  embeds_many :replies

  #referenced_in :topic
end
link|improve this question

Submitted Thu Mar 24 13:48:40 2011 : all interval values are same not just seconds. – Zabba Apr 3 '11 at 0:46
Did you happen to push your update to Heroku at around 13:48:40 by chance? – mu is too short Apr 3 '11 at 0:56
feedback

2 Answers

up vote 4 down vote accepted

My guess would be that you need to change the default value into a Proc.

In development mode, your models are being reloaded every request, so DateTime.now is always current. In production, however, the class is only loaded once (per dyno) during app startup, and DateTime.now results in a static value.

field :added_on, :type => DateTime, :default => Proc.new { DateTime.now }

should be what you want.

link|improve this answer
That was it. Thank you. – moctopus Apr 3 '11 at 0:59
Glad it worked! ^_^ – Brandon Tilley Apr 3 '11 at 1:00
feedback

This declaration in your class:

field :added_on, :type => DateTime, :default => DateTime.now

Will be handled when the file is read. On Heroku, this happens when you push your update and the slug is compiled. The result is that the default value is fixed at whatever the time happens to be when the slug is compiled. Try this instead:

field :added_on, :type => DateTime, :default => lambda { DateTime.now }

Everything probably works fine in your development environment because the file keeps getting reloaded all the time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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