Re: Imminent Death of the Heroku Google Group

2012-05-23 Thread Jeff Schmitz
I think these are good decisions. Thanks Heroku for listening to us. On Wed, May 23, 2012 at 11:52 AM, Sara Dornsife wrote: > Sorry for the delay. Support is behind log-in, this list is public. This > list and Stack Overflow help a broader audience than our support is able to. > > On the broade

Re: Cannot start Java sample app with Jetty

2012-05-23 Thread James Ward
That should not be happening. When you push changes your number of allocated dynos should not be changing. Can you file a support ticket? ps:stop is not for changing the number of allocated dynos. It is for stopping a "heroku run" process. So "heroku scale web=0" is the right way to alloca

Re: Cannot start Java sample app with Jetty

2012-05-23 Thread Jeenandra Kumar
Ok.. That spun the process up.. But I had to execute the same command the next time too after the push.. Is there a way to fix so that I dont have to execute the scale command after the code push.. Also heroky ps:stop doesnt seem to work either.. I had to do scale web=0 to stop the process.. On W

Re: Cannot start Java sample app with Jetty

2012-05-23 Thread Jeenandra Kumar
Ok.. That spun the process up.. But I had to execute the same command the next time too after the push.. Is there a way to fix so that I dont have to execute the scale command after the code push.. Also heroky ps:stop doesnt seem to work either.. I had to do scale web=0 to stop the process.. On

Re: node db-migrate?

2012-05-23 Thread Jeff Cole
Thanks very much, I'll give that a shot! On Wednesday, May 23, 2012 12:25:02 PM UTC-4, David Dollar wrote: > > The Node.js buildpack puts the bin directory of your node_modules into the > path. If you put db-migrate into your package.json you should be able to > run it with: > > $ heroku run db-

Re: Imminent Death of the Heroku Google Group

2012-05-23 Thread Sara Dornsife
Sorry for the delay. Support is behind log-in, this list is public. This list and Stack Overflow help a broader audience than our support is able to. On the broader Google Group question, this group used to be set to have the 1st post from new users moderated. That caused delays in questions get

Re: Cannot start Java sample app with Jetty

2012-05-23 Thread James Ward
I just tried this straight from the git source and it worked fine. Did you use the source straight from the github repo? Did you make changes to the app? -James On 05/22/2012 07:16 PM, Jeenandra Kumar wrote: I am trying to start the sample app provided here https://github.com/heroku/devce

Re: memory quota exceeded error

2012-05-23 Thread Neil Middleton
Are you using unicorn by any chance? If so, drop the number of workers you're running. -Neil On Wednesday, 23 May 2012 at 21:05, Josh Coffman wrote: > I'm getting Error R14 fairly regularly on one rails app. Anyone have > suggestions on tracking this down and how to handle it? > > Thanks,

memory quota exceeded error

2012-05-23 Thread Josh Coffman
I'm getting Error R14 fairly regularly on one rails app. Anyone have suggestions on tracking this down and how to handle it? Thanks, Josh -- You received this message because you are subscribed to the Google Groups "Heroku" group. To unsubscribe from this group, send email to heroku+unsubscr...

Re: node db-migrate?

2012-05-23 Thread David Dollar
The Node.js buildpack puts the bin directory of your node_modules into the path. If you put db-migrate into your package.json you should be able to run it with: $ heroku run db-migrate ... On Wed, May 23, 2012 at 8:59 AM, Jeff Cole wrote: > Has anyone tried running node db-migrate on Heroku?

node db-migrate?

2012-05-23 Thread Jeff Cole
Has anyone tried running node db-migrate on Heroku? You can run node in your environment with "heroku run node", but db-migrate is typically run from command line using "npm install -g". https://github.com/nearinfinity/node-db-migrate -- You received this message because you are subscribed

Re: Cannot start Java sample app with Jetty

2012-05-23 Thread James Ward
Try: heroku scale web=1 If your first push doesn't have a Procfile containing a process named "web" then Heroku won't auto-start a web dyno for you... Even if you add a web process later. -James -Original Message- From: Jeenandra Kumar Sender: heroku@googlegroups.com Date: Tue, 22

Re: Installing the Heroku Commands

2012-05-23 Thread James Ward
Please file a support request for this. -James -Original Message- From: Jeff SKI Kinsey Sender: heroku@googlegroups.com Date: Tue, 22 May 2012 12:21:57 To: Reply-To: heroku@googlegroups.com Subject: Re: Installing the Heroku Commands Did you get an answer? I am having maybe the same

Re: china

2012-05-23 Thread Steve Smith
I haven't tried it but I wonder if using the ssl:endpoint addon would get around this? It's my understanding that you're given a different endpoint then which is an alias to an EC2 elastic load balancer. I would guess that customers wouldn't all have the same proxy IP addresses in this case and th

Re: Installing the Heroku Commands

2012-05-23 Thread Neil Middleton
http://stackoverflow.com/questions/tagged/heroku Neil On Tuesday, 22 May 2012 at 20:16, Jeff SKI Kinsey wrote: > I don't know what post to "Stack Overflow" means.. > -- You received this message because you are subscribed to the Google Groups "Heroku" group. To unsubscribe from this group,

does Heroku limit the names of variables you can use in Procfile?

2012-05-23 Thread opyate
Hi guys, I'm struggling with a problem which I've asked about here. : http://stackoverflow.com/questions/10676667 I kinda boils down to "does Heroku limit the names of variabl

Cannot start Java sample app with Jetty

2012-05-23 Thread Jeenandra Kumar
I am trying to start the sample app provided here https://github.com/heroku/devcenter-java on http://floating-robot-9278.herokuapp.com/ >From the push logs it appears to be doing everything it is supposed to do.. But for some reason the web process is not coming up. the web process starts when

Re: "heroku login" failing on Mac

2012-05-23 Thread James H
I'm using Mac OS X 10.5.8 and using RVM installed ruby 1.9.2 and "heroku login" does not work /usr/local/heroku/lib/heroku/updater.rb:33: warning: parenthesize argument(s) for future version /Users/muskmelon/.rvm/gems/ruby-1.9.2-p290/specifications/json-1.6.1.gemspec:25:in `load_specification

Re: "heroku login" failing on Mac

2012-05-23 Thread James H
I'm using 10.5.8 Leopard with RVM installed 1.9.2 ruby and "heroku login" does not work /usr/local/heroku/lib/heroku/updater.rb:33: warning: parenthesize argument(s) for future version /Users/muskmelon/.rvm/gems/ruby-1.9.2-p290/specifications/json-1.6.1.gemspec:25:in `load_specification': uni

Cannot start Java sample app with Jetty

2012-05-23 Thread Jeenandra Kumar
I am trying to start the sample app provided here https://github.com/heroku/devcenter-java on http://floating-robot-9278.herokuapp.com/ >From the push logs it appears to be doing everything it is supposed to do.. But for some reason the web process is not coming up. the web process starts when

Re: Installing the Heroku Commands

2012-05-23 Thread Jeff SKI Kinsey
I don't know what post to "Stack Overflow" means... I get the same error on my Mac and it seems that the .rb file is getting some bad intel (install went fine, both times): FYI: $ ruby -v ruby 1.8.6 (2009-06-08 patchlevel 369) [universal-darwin9.0] on Mac OS v10.5.8 heroku login /usr/loca

Re: Installing the Heroku Commands

2012-05-23 Thread Jeff SKI Kinsey
Did you get an answer? I am having maybe the same issue... --ski On Saturday, May 19, 2012 4:23:15 PM UTC-4, Thijs Roumen wrote: > > Hey everyone, > > I guess I have a super simple question but it has taken me all day now > to try and solve it by myself.. I hope though that some of you might

china

2012-05-23 Thread Jürg Häcki
hi there my homepage on heroku (www.praxiszugersee.ch) can not be opened in china. i found the following in the internet: "As of early last week, I lost all of my traffic from China, and started getting tweets from users that they couldn't hit my site. Indeed, it looks like all three Heroku prox