I'm trying to configure my GAE and let it use a non-sync gunicorn worker 
which is the default.

I created a gunicorn.conf.py 

import multiprocessing
workers = multiprocessing.cpu_count() * 2 + 1
threads = 3
worker_class = 'eventlet'

and my app.yaml is: 

runtime: python
threadsafe: true
env: flex
entrypoint: gunicorn -b :$PORT main:app  -c config/gunicorn.conf.py

runtime_config:
  python_version: 2

requirements: 

enum-compat==0.0.2
enum34==1.1.6
eventlet
greenlet
gevent
gunicorn==19.7.1
webob==1.7.2Flask==0.12.1

When setting the worker class to eventlet or gthread and deploy the code to 
the server (gcloud app deploy) 

at the very end of the deploy I get the following error:

raise RuntimeError('no suitable implementation for this system')

How can I properly change the worker class?

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/46195a24-c67a-43bf-bf7b-7cecfa7f7334%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
  • [google-appengine]... Hilal Diab

Reply via email to