Google-app-engine – Google App Engine : this application does not exist

google-app-engine

When i deploy my application in GAE , i get this error

      This application does not exist (app_id=u'qsse-ss').

scenario is that this application is already deployed to GAE by some other user , now i have made some changes and i want to update in GAE, so now when i right click on my app in eclipse and go to "deploy to appengine " it gives me this error

Am i doing something wrong , whats the correct way of doing it

thanks

Best Answer

That happened to me as well when I provided a username that wasn't an owner/developer, and even specifying a different account with -e or --email didn't work. What fixed was this:

appcfg.py update . --no_cookies

(same as: https://stackoverflow.com/a/10004722)

Related Topic