2

我正在尝试在 appengine 上部署一个应用程序,它是一个新应用程序。我尝试更改版本名称并再次部署,我什至创建了一个新的应用程序 ID 并部署了相同的应用程序,但没有运气。

2013-06-10 19:47:41,615 WARNING appcfg.py:1778 Version still not ready to serve, aborting. 
2013-06-10 19:47:41,615 ERROR appcfg.py:1992 An unexpected error occurred. Aborting. 
Traceback (most recent call last):
  File "C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\appcfg.py", line 1978, in DoUpload
    app_summary = self.Commit()
  File "C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\appcfg.py", line 1779, in Commit
    raise Exception('Version not ready.')
Exception: Version not ready.
07:47 PM Rolling back the update.
Traceback (most recent call last):
  File "C:\Program Files (x86)\Google\google_appengine\appcfg.py", line 171, in <module>
    run_file(__file__, globals())
  File "C:\Program Files (x86)\Google\google_appengine\appcfg.py", line 167, in run_file
    execfile(script_path, globals_)
  File "C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\appcfg.py", line 4187, in <module>
    main(sys.argv)
  File "C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\appcfg.py", line 4178, in main
    result = AppCfgApp(argv).Run()
  File "C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\appcfg.py", line 2339, in Run
    self.action(self)
  File "C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\appcfg.py", line 3913, in __call__
    return method()
  File "C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\appcfg.py", line 2914, in Update
    self.UpdateVersion(rpcserver, self.basepath, appyaml, yaml_file_basename)
  File "C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\appcfg.py", line 2863, in UpdateVersion
    return appversion.DoUpload(paths, openfunc)
  File "C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\appcfg.py", line 1978, in DoUpload
    app_summary = self.Commit()
  File "C:\Program Files (x86)\Google\google_appengine\google\appengine\tools\appcfg.py", line 1779, in Commit
    raise Exception('Version not ready.')
Exception: Version not ready.
2013-06-10 19:47:43 (Process exited with code 1)

有什么线索吗?!

4

2 回答 2

4

It looks like this same issue has been seen before.

there is a work around that should work for most developers:

  1. Deploy your application as a new version. Please do not constantly attempt to redeploy your app. Your app is already in the queue even if the deploy script times out.

  2. Validate that the new version is active using the .latest URL

  3. Use the Admin Console to switch the active or default application to this version

Unable to update app: Version not ready

If that doesn't work, some people are reported success with performing a rollback of their application, and then redeploying it.

于 2013-06-10T18:30:15.250 回答
-4

我已经看到这是一个暂时的问题。请过几分钟再试。

于 2014-06-05T06:33:51.147 回答