在17版本中,使用在线聊天功能时,发现有报错
powershell
Couldn't bind the websocket. Is the connection opened on the evented port 8072
在跟踪代码后,发现在
powershell
odoo-17.0\addons\bus\websocket.py
836 行在linux有差异
进行修改优化
修改前
python
socket = request.httprequest._HTTPRequest__environ['socket']
修改后
python
socket = request.httprequest._HTTPRequest__environ['werkzeug.socket']
即可使用
在win环境下都可使用
只是本人测试环境的问题
不代表实际问题