db:push LocalTime fields to UTC

2010-06-10 Thread edoardoz
In my server I have a db created without TimeZone management. This mean all DateTime fields are saved as LocalTime. To manage Heroku's different TZ I added config.time_zone = 'my TZ' to config/environment.rb, this mean DateTime fields are saved as UTC and returned with .in_time_zone. heroku

Reliability

2010-06-10 Thread Neil
I thought I would post this after the follow-up after the outage popped up to ask some people their opinion on reliability of Heroku over other services such as Brightbox etc for critical applications. I've run a fair few apps on Heroku before but nothing that would be considered anything like

Re: Reliability

2010-06-10 Thread Chap
I run all my clients on heroku, many are critical to the daily running of their businesses, so this is a big deal to me. I'm at railsconf so I asked one of they guys about this and got this response: They are on call 24/7, so when something goes wrong a person is paged and woken up and gets to

Re: db:push LocalTime fields to UTC

2010-06-10 Thread edoardoz
Just found this solution: plain db update before db:push. update activity set created_at = (select created_at::timestamp with time zone at time zone 'utc'), updated_at = (select updated_at::timestamp with time zone at time zone 'utc') ; Anything better? On Jun 10, 10:40 am, edoardoz

heroku.com is down, and so is my website!

2010-06-10 Thread marshall
Subject line says it all -- heroku.com is down, and so is my website! Anyone know what's going on? Marshall -- You received this message because you are subscribed to the Google Groups Heroku group. To post to this group, send email to her...@googlegroups.com. To unsubscribe from this group,

SSL issues

2010-06-10 Thread Mike Doel
Our app supports two sites: www.vacationtrade.com www.rrbo.com I have uploaded SSL certificates for both, and heroku ssl:add gave me positive assurances that it understood both by telling me what domains they were for. However, we're having problems with the www.rrbo.com one in some

Re: EXIF support on Heroku?

2010-06-10 Thread Steve Smith
Does the identify command of ImageMagick help at all? I'm pretty sure that its installed or if not it is required as part of the paperclip gem. The command is something like identify -format %[exif:*] image.jpg Steve On Jun 8, 5:51 pm, Patrick Crowley patr...@mokolabs.com wrote: I'm really

Re: Occasional Memcached::ServerIsMarkedDead Error

2010-06-10 Thread Sean Lynch
On Jun 8, 2010, at 10:11 AM, chris wrote: Hey y'all, I'm getting an occasional Memcached::ServerIsMarkedDead error when folks hit the app. It seems to work fine if I wait a while or just restart the app. What do you guys do to catch this error? begin rescue retry? fail gracefully

How can I clean out or reinitialize an app's git repository?

2010-06-10 Thread Dan Z
I've got several apps where I need to re-init or clean out the repository (partly to reduce the bundle size). Heroku doesn't support direct access to the machine. Is there some way (e.g. a git command) I can accomplish this without creating a new app and pushing my clean repository to it? The

Re: EXIF support on Heroku?

2010-06-10 Thread Steve Smith
Does the identify command of ImageMagick help at all? I'm pretty sure that its installed or if not it is required as part of the paperclip gem. The command is something like identify -format %[exif:*] image.jpg Steve On 8 Jun 2010, at 15:54, Keenan Brock wrote: Kinda a hack but If you

rails-3.0.0.beta4 on bamboo-ree-1.8.7?

2010-06-10 Thread Ariejan de Vroom
Hey, I'm running into a Bundler/Rails issue when trying to deploy a Rails 3.0.0.beta4 app to the bamboo-ree-.1.8.7 stack. Rails 3b4 need bundler 0.9.26, however, 0.9.25 is installed. Are there any plans on upgrading Bundler on the bamboo stack or are there other ways around? Thanks, Ariejan de

Troubles Today?

2010-06-10 Thread Mario Zigliotto
Does anyone know what is going on today? Almost all Heroku owned apps are not loading today, including heroku's main site which is down with a 504 Gateway Timeout error ( http://heroku.com/ ) Their status page says everything is peachy: http://status.heroku.com/ anybody know whats going on

Re: Reliability

2010-06-10 Thread Steve Smith
For me I think one of the key differences between heroku and other systems is that it isn't me doing the admin when things do go wrong. Sure things will go down from time to time but even if I used a managed server that I had root access to the chances are that I would have to get involved, or

Re: libraptor binary

2010-06-10 Thread Matthew Soldo
Hi RDF fans, We now have libraptor on our bamboo stack! Bamboo is not the default Heroku stack. If you aren't familiar with Heroku stacks you should read up on them here. To create a new app with Bamboo, use the following command: heroku create --stack bamboo-ree-1.8.7 To switch an existing

Re: rails-3.0.0.beta4 on bamboo-ree-1.8.7?

2010-06-10 Thread Chris Hanks
I'm anxious for Bundler 0.9.26 also! On Jun 9, 3:31 am, Ariejan de Vroom arie...@gmail.com wrote: Hey, I'm running into a Bundler/Rails issue when trying to deploy a Rails 3.0.0.beta4 app to the bamboo-ree-.1.8.7 stack. Rails 3b4 need bundler 0.9.26, however, 0.9.25 is installed. Are