bugfix
This commit is contained in:
parent
bba7f060ac
commit
cf5cd792dc
@ -5,6 +5,7 @@ import json
|
||||
import codecs
|
||||
from aiohttp import web
|
||||
import aiohttp_cors
|
||||
from traceback import print_exc
|
||||
from appPublic.sshx import SSHNode
|
||||
from .baseProcessor import BaseProcessor, PythonScriptProcessor
|
||||
|
||||
@ -154,6 +155,7 @@ class WebsocketProcessor(PythonScriptProcessor):
|
||||
await ws.prepare(request)
|
||||
except Exception as e:
|
||||
print('--------except:', e, type(e))
|
||||
print_exc()
|
||||
raise e
|
||||
print(f'{request.path=}4')
|
||||
ws_pool = WsPool(ws, request.path, request.app)
|
||||
|
Loading…
Reference in New Issue
Block a user