Flask SocketIO& uWSGI导致'TypeError:'SocketIO'对象不可调用'

时间:2017-07-11 13:13:21

标签: python nginx socket.io uwsgi

我目前正在构建一个使用Flask和Flask SocketIO组合的应用程序来处理HTTP和WebSocket流量的组合。在服务器上部署我的应用程序并将uWSGI和Nginx添加为网关之后,wsgi脚本在日志中给出了以下错误:

TypeError: 'SocketIO' object is not callable
[pid: 4262|app: 0|req: 3/8] XXX.XXX.XXX.XXX () {46 vars in 912 bytes} [Tue Jul 11 14:57:25 2017] GET / => generated 0 bytes in 0 msecs (HTTP/2.0 500) 0 

uWSGI documentation中所述,我在配置文件中将set http-websockets标志添加为true。 Flask SocketIO文档声明他们支持uWSGI:

  

另一种选择是使用带有WebSocket功能的uWSGI Web服务器。 gevent的使用也是一个高性能选项,但略低于eventlet。

有谁知道我做错了什么?我正在使用最新版本的Nginx。我在这里先向您的帮助表示感谢。我的设置:

Flask服务器(mymod.server)

from flask import Flask
from flask_socketio import SocketIO, emit


server = Flask(__name__)
io = SocketIO(server)

@server.route("/")
def index():
    return server.send_static_file("index.html")

@io.on("ping")
def ping():
    emit("pong")

WSGI脚本(项目的根目录)

from mymod.server import io

if __name__ == "__main__":
    io.run(host="127.0.0.1", port=8080)

WSGI config

# Configuration file for Nginx
[uwsgi]
module = wsgi:io
master = true
processes = 5
buffer-size=32768
http-websockets = true
socket = server.sock
chmod-socket = 666
vacuum = true
die-on-term = true
logto = /var/log/uwsgi/%n.log

Nginx config

server {
    listen 443 http2 ssl;
    listen [::]:443 http2 ssl;

    server_name _;
    server_tokens off;

    location / {
        include uwsgi_params;
        uwsgi_pass unix:/home/user/project/server.sock;
    }

    location /socket.io/ {
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_pass http://unix:/home/user/project/server.sock;
    }
}

我如何启动服务器

$ uwsgi --ini config.wsgi.ini

1 个答案:

答案 0 :(得分:2)

结果Flask-SocketIO只需安装到原始的app对象上,取而代之的是:

[uwsgi]
module = wsgi:io

要:

[uwsgi]
module = wsgi:app

会工作,但是uwsgi仍然对SocketIO提供了可怕的支持,从我听到的内容来看,gunicorn是一个更好的选择。