On Fri, Apr 25, 2008 at 11:14 AM, chris <[EMAIL PROTECTED]> wrote: > 79:in `process_result': Heroku::Client::Unauthorized > (Heroku::Client::Unauthorized)
There are two different authentication methods being used here: one is HTTP basic auth with your Heroku user and password for API calls, and one is your ssh key for git clone, push, and pull. ssh authentication errors look like this: Permission denied (publickey). In that case, you need to check your key. Whereas the error you described - Heroku::Client::Unauthorized - means the first one. Try deleting the file ~/.heroku/credentials and re-enter your username and password. Adam --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Heroku" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/heroku?hl=en -~----------~----~----~----~------~----~------~--~---
