Re: app transfer and billing

2013-01-09 Thread Mark Pundsack
You should use the Heroku Dashboard web interface to transfer paid apps. It's a relatively new addition and I believe the CLI still only lets you transfer free apps. If you try with the CLI, it should just fail. Mark On Jan 9, 2013, at 6:54 AM, Neil Middleton wrote: > No need to email support

Re: app transfer and billing

2013-01-09 Thread Neil Middleton
No need to email support. If you transfer ownership, the new owner needs a verified CC as the billing just moves over with it. heroku sharing:transfer b...@example.com -- Neil On Wednesday, 9 January 2013 at 14:42, Martin Moss wrote: > Just email support, and they'll sort it for you > > B

Re: app transfer and billing

2013-01-09 Thread Martin Moss
Just email support, and they'll sort it for you Basically both the owner and the account to be transferred to should email support confirming the transfer, and they'll organise it for you. The billing will transfer to the new owner - or at least this was what happened to us. Marty On 17 Decembe

Re: Ask a web dyno if it is currently up, from the outside?

2013-01-09 Thread Martin Moss
I do this in python in this code https://github.com/martyzz1/heroku_proc_scalar_app/blob/master/worker.py def get_current_dynos(heroku_app, procname): try: web_proc = heroku_app.processes[procname] except KeyError: return 0 else: cpt = 0 for proc in web