Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google App Engine : this application does not exist

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

like image 217
user1226162 Avatar asked May 02 '12 04:05

user1226162


People also ask

What programs support Google App Engine?

Google App Engine primarily supports Go, PHP, Java, Python, Node. js, . NET, and Ruby applications, although it can also support other languages via "custom runtimes". The service is free up to a certain level of consumed resources and only in standard environment but not in flexible environment.

How do I run the Google App Engine in eclipse?

Run eclipse. To download and install the Cloud Tools for Eclipse plugin, select Help > Eclipse Marketplace... and search for Google Cloud. After installation, restart Eclipse when prompted to do so. In Eclipse, select the File menu > New > Google App Engine Standard Java Project.


2 Answers

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)

like image 73
divieira Avatar answered Oct 21 '22 01:10

divieira


You have to login under developer or owner to deploy application. This is bottom left icon in eclipse.

Also check your application name. If id of application correct and user you login has role owner/developer for this application - you will deploy.

like image 7
alexey28 Avatar answered Oct 21 '22 00:10

alexey28