Назад | Перейти на главную страницу

AssertionError при использовании uwsgi с pypy с образцом тестового приложения

Я пытаюсь запустить образец приложения hello world для тестирования pypy с использованием uwsgi с pypy. Я попытался создать uwsgi с помощью плагина pypy (используя python uwsgiconfig.py --plugin plugins/pypy) и pypy в моем домашнем каталоге.

http://uwsgi-docs.readthedocs.org/en/latest/PyPy.html

Однако, когда я использую команду

 ~/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

он выходит с OperationalError и 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"

Кто-нибудь получил pypy для успешной работы с uwsgi? Я пробую здесь самую простую конфигурацию, что я делаю не так?