我试图部署我的应用程序,但我得到了以下错误:
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)所以我试着通过运行这个来解决这个问题:
c:\Python27\python appcfg.py rollback在包含我的app.yaml文件的目录中。
这是:
c:\Python27\python appcfg.py rollback <path to directory with my app.yaml file>但在这两种情况下我都明白:
Can't open file 'appcfg.py': [Errno 2] No such file or directory有人知道怎么解决这个问题吗?
谢谢。
发布于 2014-08-17 00:47:43
以下是我如何解决这个问题的方法:
cd C:\Program Files (x86)\Google\google_appengine
c:\Python27\python appcfg.py rollback C:\Users\UserName\SkyDrive\Programming\ProjectFolder\app.yaml然后我按提示输入我的电子邮件和密码,它回滚更新,现在我可以正常部署了。
发布于 2014-08-16 22:18:52
cd C:\path\containing\app.yaml\file
c:\Python27\python appcfg.py rollback .https://stackoverflow.com/questions/25344480
复制相似问题