GAE - Deployment Error: “AttributeError: can't set attribute”

前端 未结 6 1706
有刺的猬
有刺的猬 2021-02-14 02:44

When I try to deploy my app I get the following error:

Starting update of app: flyingbat123, version: 0-1
Getting current resource limits.
Password for avigmati: Trac         


        
6条回答
  •  北恋
    北恋 (楼主)
    2021-02-14 03:23

    I know this doesn't answer the OP question, but it may help others who experience problems using --oauth2 mentioned by others in this question.

    I have 2-step verification enabled, and I had been using the application-specific password, but found it tedious to look up and paste the long string every day or so. I found that using --oauth2 returns

    This application does not exist (app_id=u'my-app-id')

    but by adding the --no_cookies option

    appcfg.py --oauth2 --no_cookies update my-app-folder\

    I can now authenticate each time by just clicking [Allow access] in the browser window that is opened.

    I'm using Python SDK 1.7.2 on Windows 7

    NOTE: I found this solution elsewhere, but I can't remember where, so I can't properly attribute it. Sorry.

    .

提交回复
热议问题