AssertionError ao usar o uwsgi com pypy com o aplicativo de teste de amostra

2

Estou tentando obter o aplicativo python de teste de hello de amostra para executar usando o uwsgi com pypy. Eu tentei construir o uwsgi com o plugin pypy (usando python uwsgiconfig.py --plugin plugins/pypy ) e pypy no meu diretório home.

link

No entanto, quando eu uso o comando

 ~/uwsgi-2.0.4/uwsgi --plugin ~/uwsgi-2.0.4/pypy --http-socket :9090 --pypy-home ~/pypy-2.2.1-linux64/ --pypy-wsgi uwsgi_pypy_test.wsgi --pypy-lib ~/uwsgi-2.0.4/plugins/pypy/libpypy-c-x86_64_20130524.so

sai com OperationalError e AssertionError :

*** Starting uWSGI 2.0.4 (64bit) on [Wed May  7 11:14:46 2014] ***
compiled with version: 4.6.3 on 01 May 2014 10:11:39
os: Linux-3.8.0-35-generic #52~precise1-Ubuntu SMP Thu Jan 30 17:24:40 UTC 2014
nodename: mcp03
machine: x86_64
clock source: unix
pcre jit disabled
detected number of CPU cores: 8
current working directory: /var/www/pypytest/src
detected binary path: /home/alphad/uwsgi-2.0.4/uwsgi
*** WARNING: you are running uWSGI without its master process manager ***
your processes number limit is 128233
your memory page size is 4096 bytes
detected max file descriptor number: 1024
lock engine: pthread robust mutexes
thunder lock: disabled (you can enable it with --thunder-lock)
uwsgi socket 0 bound to TCP address :9090 fd 3
debug: OperationError:
debug:  operror-type: AssertionError
debug:  operror-value:

uwsgi_pypy_test.wsgi

def application(e, sr):
    sr('200 Ok', [('Content-Type', 'text/html')])
    return "ciao"

Alguém conseguiu pypy para correr com sucesso com o uwsgi? Estou tentando a configuração mais básica aqui, o que estou fazendo de errado?

    
por monkut 01.05.2014 / 04:27

0 respostas

Tags