从昨天开始,GAE在entrypoint
中忽略了我的app.yaml
我的app.yaml
:
runtime: python37
entrypoint: gunicorn -k eventlet -b :$PORT main:app
进入以下日志输出:
2019-04-24 07:39:58 default[20190423t203005] [2019-04-24 07:39:58 +0000] [8] [INFO] Starting gunicorn 19.9.0
2019-04-24 07:39:58 default[20190423t203005] [2019-04-24 07:39:58 +0000] [8] [INFO] Listening at: http://0.0.0.0:8081 (8)
2019-04-24 07:39:58 default[20190423t203005] [2019-04-24 07:39:58 +0000] [8] [INFO] Using worker: threads
但是工作人员应该是eventlet
而不是threads
。