On 9/5/06, hemant <[EMAIL PROTECTED]> wrote: > What these warnings mean: > > > /usr/local/lib/site_ruby/1.8/transaction/simple.rb:74: > warning: already initialized constant Messages > /usr/local/lib/site_ruby/1.8/transaction/simple.rb:274: > warning: already initialized constant TRANSACTION_SIMPLE_VERSION > /usr/local/lib/site_ruby/1.8/transaction/simple.rb:635: > warning: already initialized constant TRANSACTION_CHECKPOINT > /usr/local/lib/site_ruby/1.8/transaction/simple.rb:636: > warning: already initialized constant SKIP_TRANSACTION_VARS > > Earlier...i had a model called Message, so i thought I was getting these > warnings because...but even after getting rid of that model..i get those > errors. > Still...i guess, it could be a problem at my end....but just wanted to put > it up here.
I development mode, files are reloaded upon each request. That causes redefinition of classes, and what you have seen is a side effect of the redefinition. _______________________________________________ Mongrel-users mailing list [email protected] http://rubyforge.org/mailman/listinfo/mongrel-users
