Re: Documentation page not up to date

2012-04-02 Thread Jon Mountjoy
Thanks Oscar! I'll get those docs fixed. On Sat, Mar 31, 2012 at 10:06 PM, Oscar Lindberg wrote: > I don't know where to report this, so I'll try here. I'm sure someone > can tell me where to report it if this is the wrong place. > > The description of this google group only mentions Ruby, so sho

Re: Issue with root domain

2013-10-14 Thread Jon Mountjoy
Also: It looks like you did the right thing for your subdomain, but how is your apex domainsetup? Did you change that one too? On Mon, Oct 14, 2013 at 10:31 AM, Neil Middleton wrote: > The problem here is tha

Re: Is Websockets support coming?

2014-01-21 Thread Jon Mountjoy
I'm not sure what you mean by "does not seem to work", but have you architected your app to handle the fact that WebSocket is stateless (and your dynos are too)? For example, read thisand this

Re: java.lang.reflect.InvocationTargetException

2014-05-05 Thread Jon Mountjoy
Check out the docs. I guess your account isn't verified. On Sun, May 4, 2014 at 4:45 AM, Alexander Turkovic < alexander.turko...@gmail.com> wrote: > How many apps do you have installed on Heroku? Once I hit 5 apps, th

Re: onStop Global function doubts

2015-03-10 Thread Jon Mountjoy
When Heroku is going to terminate a dyno it sends it a SIGTERM. See the doc . Perhaps you can catch it, and then call your onStop? This SO article seems