Google app engine 回滚Google应用程序引擎项目

Google app engine 回滚Google应用程序引擎项目,google-app-engine,Google App Engine,我试图部署我的应用程序引擎应用程序,但出现以下错误: Error 409: --- begin server output --- Another transaction by user <email> is already in progress for app: s~my-app, version: 1. That user can undo the transaction with "appcfg rollback". --- end server output --- 201

我试图部署我的应用程序引擎应用程序,但出现以下错误:

Error 409: --- begin server output ---
Another transaction by user <email> is already in progress for app: s~my-app, version: 1. That user can undo the transaction with "appcfg rollback".
--- end server output ---
2014-08-16 18:06:15 (Process exited with code 1)
在包含my app.yaml文件的目录中

这是:

c:\Python27\python appcfg.py rollback <path to directory with my app.yaml file>
有人知道怎么解决这个问题吗


谢谢。

以下是我最终解决问题的方法:

cd C:\path\containing\app.yaml\file
c:\Python27\python appcfg.py rollback .
cd C:\Program Files (x86)\Google\google_appengine
c:\Python27\python appcfg.py rollback C:\Users\UserName\SkyDrive\Programming\ProjectFolder\app.yaml

然后我在提示下输入了电子邮件和密码,它回滚了更新,现在我可以再次正常部署。

当我尝试将CD刻录到
C:\Users\UserName\SkyDrive\Programming\AppFolder\app.yaml\file时,我被告知系统找不到指定的路径。当我执行
C:\Users\UserName\SkyDrive\Programming\AppFolder\containing\app.yaml\file
时也会发生同样的情况。我最终找到了答案(见我的答案)。无论如何,谢谢你的帮助,我很感激。
cd C:\path\containing\app.yaml\file
c:\Python27\python appcfg.py rollback .
cd C:\Program Files (x86)\Google\google_appengine
c:\Python27\python appcfg.py rollback C:\Users\UserName\SkyDrive\Programming\ProjectFolder\app.yaml