Re: Heroku down time today, about 30 minutes total

2010-10-29 Thread Al
So, 3 nine's is what to expect from Heroku? On Oct 28, 3:50 am, Peter Marklund peter_markl...@fastmail.fm wrote: Regardless with hosting option you choose you will have downtime. I have found more often than not the reason is to do with infrastructure like power, networking, hardware, routing

Re: Full Logging Solutions

2010-10-29 Thread Peter Marklund
Hey John! Thanks for the tip about capped collections, I had missed that. I now have a 20GB capped collection on MongoHQ for my logging... I've added a note to the README about this. Cheers Peter On Oct 29, 12:20 am, John Barnette jbarne...@gmail.com wrote: On Oct 28, 2010, at 3:13 PM, Peter

Re: Abridged summary of heroku@googlegroups.com - 25 Messages in 9 Topics

2010-10-29 Thread lsiden
K Sent via BlackBerry from T-Mobile -Original Message- From: heroku+nore...@googlegroups.com Sender: heroku@googlegroups.com Date: Thu, 28 Oct 2010 10:34:58 To: Abridged Recipientsheroku+dig...@googlegroups.com Reply-To: heroku@googlegroups.com Subject: Abridged summary of

Re: Bundler upgrade to 1.0.3 to support BUNDLE_WITHOUT?

2010-10-29 Thread marcel
My slug used to be about 85 MB (!), but around the time that Heroku started recognizing BUNDLE_WITHOUT, my slug size dropped to 35 MB. I also noticed that Heroku's bundler reinstalls all the gems on EVERY deploy, whereas is used to only run if my gemlock changed. Thats ~5mins instead of

Sendgrid questions

2010-10-29 Thread Russell Quinn
* What happens if I exceed my quota? * How do we access the Sendgrid web interface from our Heroku account? -- 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,

Re: Sendgrid questions

2010-10-29 Thread Brandon Casci
I've been playing with Sendgrid for a while. I think they eventually start rejecting messages, but I've also heard they might hunt you down with a furious wrath that no one can comprehend. On Fri, Oct 29, 2010 at 3:09 PM, Russell Quinn m...@russellquinn.comwrote: * What happens if I exceed my

heroku routing issues

2010-10-29 Thread Cris
Hi there, I'm having problems with routing in my heroku environment heroku. I have this redirect in the index method of the application controller. class ApplicationController ActionController::Base . def index redirect_to root_url end end this works perfectly in my local environment

First S3 upload works, subsequent uploads do not

2010-10-29 Thread spectr
My app works perfectly on my development server with Amazon S3 but once deployed to Heroku, it breaks AFTER one successful upload. I am able to create one post which has one attached image. Once uploaded, the image file can be accessed without a problem. The problem arises when trying to create

Re: heroku routing issues

2010-10-29 Thread Cris
I should have also added the routing problems occur in the production environment (on heroku) but not in dev environment. Thanks On Oct 29, 2:15 pm, Cris cristinarand...@gmail.com wrote: Hi there, I'm having problems with routing in my heroku environment heroku. I have this redirect in the

Re: heroku routing issues

2010-10-29 Thread Chris Hanks
Can you explain what is actually happening? Is there an error message? Also, actions aren't typically defined in the ApplicationController, so I wouldn't be surprised if putting them there makes things iffy. You can try running your app in production mode on your local machine is order to see

Re: Sendgrid questions

2010-10-29 Thread chris
Pretty sure they'll just charge you... their regular plans ( http://sendgrid.com/pricing.html ) all have a Price per email thereafter To access the Sendgrid web interface, run 'heroku config' and look for the ENV variables SENDGRID_PASSWORD and SENDGRID_USERNAME. Use those to login at

Re: heroku routing issues

2010-10-29 Thread Cris
Hi there, thanks for the reply. The actions are defined in index of ApplicationController. There is no error message, simply that the code within index is not invoked. I ran in production mode locally, and it indeed gives the same error. I checked the routes and they are the same, after running

Re: Sendgrid questions

2010-10-29 Thread Brandon Casci
You know...I just remembered I'm not using the Sendgrid addon. I'm still using my own Sendgrid account I set up before moving to Heroku. I'm pretty sure I encountered a hard limit there, but that was before Sendgrid launched the new site and some other things. On Fri, Oct 29, 2010 at 5:05 PM,

Re: Sendgrid questions

2010-10-29 Thread Oren Teich
If you exceed the quota with the add-on, sendgrid will start giving you authentication errors. To access the web interface, run heroku config grab the username/password, and login to sendgrid. Oren On Fri, Oct 29, 2010 at 12:09 PM, Russell Quinn m...@russellquinn.com wrote: * What happens if I

Re: heroku routing issues

2010-10-29 Thread Oren Teich
Paste the full output of your output from when you run it locally in production mode into a gist (gist.github.com) and paste that here. Oren On Fri, Oct 29, 2010 at 2:40 PM, Cris cristinarand...@gmail.com wrote: Hi there, thanks for the reply. The actions are defined in index of

Re: heroku routing issues

2010-10-29 Thread Chris Hanks
My advice would be to drop the index action entirely from ApplicationController, since its not very good practice (ApplicationController isn't meant to define actions - it's more for collecting before_filters and things like that). If you'd like to talk a bit more about what you're trying to do