Well folks, for your future reference, I thought I'd mention what I did and experienced.
The problem persisted on and I finally decided to poke a bit more. After performing a `heroku restart` and looking at the logs further, I found that the entire app blew up. Nothing would come up at all as per the `heroku logs -t`. I then checked the schema again, just to make sure the last rake ran through properly and `heroku console Property` did indeed show that it had the correct schema and everything on my part had been done correctly. I issued a support ticket, came back 5 minutes later and they had issued a reply to me: This is just taking too long to boot, so we're killing it after 60s. Can you try booting it locally with thin in production mode and time how long it takes to become responsive to http requests? $ thin -e production start --END SUPPORT REPLY-- After the app restarted this time, things worked. So it perhaps appears to entirely be a Heroku-Hobo interaction issue. Tiago recommended as per a discussion with Domizio that I comment out: config/initializers/dryml_taglibs.rb: #Dryml.precompile_taglibs if File.basename($0) != "rake" && Rails.env.production? After doing so I noticed another issue: running `rails s -e production` blows up the routes for the theme. I have no custom theme, just the default. It appears to be a Hobo bug of some sort, but I'm not able to isolate what's going on. Seeing things like this in the log for localhost production: ... DRYML: Compiled app/views/taglibs/front_site.dryml in 0.01s DRYML: Compiled app/views/front/index.dryml in 1.51s Rendered front/index.dryml (1612.0ms) Completed 200 OK in 1618ms (Views: 1613.3ms | ActiveRecord: 0.7ms) Started GET "/stylesheets/reset.css?1308855518" for 127.0.0.1 at 2011-07-01 09:55:55 -0400 ActionController::RoutingError (No route matches "/stylesheets/ reset.css"): Rendered /Users/username/.rvm/gems/ruby-1.9.2-p180/gems/ actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/ routing_error.erb within rescues/layout (1.1ms) Started GET "/hobothemes/clean/stylesheets/clean.css" for 127.0.0.1 at 2011-07-01 09:55:55 -0400 ActionController::RoutingError (No route matches "/hobothemes/clean/ stylesheets/clean.css"): Rendered /Users/username/.rvm/gems/ruby-1.9.2-p180/gems/ actionpack-3.0.9/lib/action_dispatch/middleware/templates/rescues/ routing_error.erb within rescues/layout (0.9ms) Started GET "/stylesheets/application.css?1308855475" for 127.0.0.1 at 2011-07-01 09:55:55 -0400 ActionController::RoutingError (No route matches "/stylesheets/ application.css"): ... Any ideas? On Jun 30, 11:02 pm, ylluminate <[email protected]> wrote: > Pulling out my hair on a strange issue: I made a change to a model, > ran: > `hobo g migration && rails s` > > worked perfectly. Committed it to git. Then pushed changes to Heroku > via: > `git push heroku master && heroku rake db:migrate && heroku db:push > #for good measure and sanity check` > > and the thing blew up in an unexpected way:http://bit.ly/mS1X6J > > Now I just simply am not sure what to do and very much could use some > input here as to what I should look for. I have changed the model > attribute multiple times and synced this name change within the > forms.dryml to no avail, exact same error each time with the new model > attribute name. > > Would appreciate any input! > > Thanks, > > -George -- You received this message because you are subscribed to the Google Groups "Hobo Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/hobousers?hl=en.
