Google KMS on AppEngine Dev Server - logging clutter

后端 未结 3 1283
盖世英雄少女心
盖世英雄少女心 2020-12-21 10:36

This is a known issue: https://issuetracker.google.com/issues/63253097

Further to my question about getting Google KMS working with App

3条回答
  •  有刺的猬
    2020-12-21 10:54

    For me, these messages appear to originate from a GAE (.local) file called stubs.py.

    1. In my first case, stubs.py was looking for files that were not there. So you might want to check to see if "/usr/lib/Acrobat8/Resource/CMap" actually exists. Then, starting with stubs.py, try to find out what file is trying to load it.

      1. My project is using web.py, all of a sudden I started getting (stubs.py) messages again, this time about .pyc files. I put a skip_files: in the bottom of my app.yaml file, and it does suppress the messages, but I haven't tested to see if my app still fully compiles.

        skip_files:
        - ^(.*/)?\.pyc$
        

    More on the Python GAE runtime and sandbox here. https://cloud.google.com/appengine/docs/standard/python/runtime

提交回复
热议问题