[google-appengine] Re: Unable to update

2011-05-08 Thread RRRaney
Hello, I get the same error while trying to re-deploy another application to the same app-engine account. I can create new applications but cannot deploy from eclipse. It seems to be something with my app-engine account, I can deploy as an application in my brothers app-engine account, wit

[google-appengine] Re: Unable to update

2011-05-08 Thread RRRaney
Hello, As my good friend Inspector Jacques Clouseau would say “The problem is solved”. I had no problems logging into my app-engine account to check and add applications thru my browser. While back in the Eclipse SDK I noticed that the Google Plug-in keeps track of the app-engine

[google-appengine] Re: Unable to update

2011-05-09 Thread RRRaney
Hello, Just did some more checking of the Google Plug-in for Eclipse documentation. Deploying your Web Application To deploy your web application, you will need to create an application from the App Engine Administration Console, at the following URL: https://appengine.google.com/. If

[google-appengine] Re: Unable to update

2011-05-09 Thread RRRaney
I have found some entries in the registry that seem to correspond to the Google Plug-in Login. HKEY_CURRENT_USER\Software\JavaSoft\Prefs\com\google\gdt\eclipse\login\... Raney -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To po

[google-appengine] Re: Unable to update app engine app

2018-03-08 Thread Ani Hatzis
When I used App Engine SDK (appcfg) it could happen that a deployment failed, so I repeated the deployment a few minutes later. The same is with Cloud SDK (cloud app deploy). Nothing noteworthy. The new SDK has a little learning curve, but I believe it is far superior to the App Engine SDK. How

[google-appengine] Re: Unable to update app engine app

2018-03-08 Thread Nezare Chafni
I've been using the new SDK for 6 months, nothing special, the problem started with the switch is what I'm saying. Everything succeeds, no errors, my code just never updates. app.yaml is configured correctly, again, i've been deploying this app with the new sdk. the configuration is correct. T

[google-appengine] Re: Unable to update app engine app

2018-03-08 Thread Ani Hatzis
Well, no, I had no such issue, but that doesn't mean anything. You could file a bug report on their public issue tracker . All the best On Thursday, 8 March 2018 22:53:48 UTC+1, Nezare Chafni wrote: > > I've been us

[google-appengine] Re: Unable to update app engine app

2018-03-08 Thread 'Katayoon (Cloud Platform Support)' via Google App Engine
I would like to encourage you to file a Public Issue Tracker report any time you see an unexpected behavior on the Cloud Platform as well. You could use the “gcloud app deploy” command with the “--verbosity=debug” and also “gcloud info” w

[google-appengine] Re: Unable to update: java.lang.RuntimeException: Version not ready

2012-09-23 Thread Tenderloin
I have the same issue for like a week till now. The chance of getting through is like 30%. On Friday, September 14, 2012 11:45:04 AM UTC-7, Aneetha Venu wrote: > > Hi, > > All of a sudden since today morning, whenever I try to deploy my app to a > particular application in googleplex.com (conci

[google-appengine] Re: unable to update my app (authentication issue)

2010-03-18 Thread Greg Tracy
I'm able to update some of my other apps, but I still can't update the 'apodemail' app. As I look at the list of developers listed in the admin panel for each of my apps, there is clearly a disconnect. Some apps have multiple entries with the same email address. Some apps have no administrators l

[google-appengine] Re: unable to update my app (authentication issue)

2010-03-18 Thread Greg Tracy
update... when i add a new developer to the app, i am able to run update on the app when i authenticate using the new user. however, the app is functionally broken at the moment because it can't send email. i've tried setting the "sender" using the owner of the app as well as the new developer a

[google-appengine] Re: Unable to update an entity in datastore

2009-09-12 Thread BornInMeadowMuffins
It has been solved here: http://groups.google.com/group/google-appengine/browse_thread/thread/d8b378828beb726b# But still, what's wrong with the previous code? On Sep 13, 9:09 am, BornInMeadowMuffins wrote: > Here is my code: > # Database Model > class Employee(db.Model): >   id = db.IntegerProp

[google-appengine] Re: Unable to update an entity in datastore

2009-09-12 Thread Sylvain
I think it should work : res = Employee.gql("WHERE id = :1", some_user_id) to_put = [] for r in res: r.delivery_type = some_type to_put.append(r) db.put(to_put) or res = Employee.gql("WHERE id = :1", some_user_id) for r in res: r.delivery_type = some_type db.put(r) You change 'r' but

[google-appengine] Re: Unable to update an entity in datastore

2009-09-18 Thread djidjadji
The line res = Employee.gql("WHERE id = :1", some_user_id) results in a Query object that can be used to iterate over. It is not a list that maintains references to the objects. for r in res: pass db.put(res) The put() operation has no effect because the iterator 'res' already has reached t

[google-appengine] Re: Unable to update: stops at uploading cron job

2011-01-24 Thread Daniel
Python updating is down as well. The admin console is barely working and nothing is currently getting logged. It also seems that all of my tasks are no longer running. On Jan 24, 2:16 pm, Vishnu Pradeep wrote: > Unable to update: > java.io.IOException: Error posting to > URL:https://appengine.

[google-appengine] Re: Unable to update (create) appengine app, internal error during appengine initialization?

2015-11-18 Thread Adam
Posting some screen shots may help to understand the problem better, but based on your descriptions you may have no choice but to create a new project if the App Engine component is missing. This is generally the only 'fix' for when something goes awry when a project is provisioned. On Wednesda