mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-23 16:23:41 +00:00
Silented engine.io exception when client session as expired on server side
This commit is contained in:
parent
4b7cdbc5f3
commit
a3b32c3ebf
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ def create_app():
|
||||||
app.config["DEBUG"] = False
|
app.config["DEBUG"] = False
|
||||||
|
|
||||||
socketio.init_app(app, path=f'{base_url.rstrip("/")}/api/socket.io', cors_allowed_origins='*',
|
socketio.init_app(app, path=f'{base_url.rstrip("/")}/api/socket.io', cors_allowed_origins='*',
|
||||||
async_mode='threading', allow_upgrades=False, transports='polling')
|
async_mode='threading', allow_upgrades=False, transports='polling', engineio_logger=False)
|
||||||
|
|
||||||
@app.errorhandler(404)
|
@app.errorhandler(404)
|
||||||
def page_not_found(_):
|
def page_not_found(_):
|
||||||
|
|
Loading…
Reference in a new issue