Skip to content

Commit

Permalink
Silented engine.io exception when client session as expired on server…
Browse files Browse the repository at this point in the history
… side
  • Loading branch information
morpheus65535 committed Dec 6, 2023
1 parent 4b7cdbc commit a3b32c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bazarr/app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def create_app():
app.config["DEBUG"] = False

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)
def page_not_found(_):
Expand Down

0 comments on commit a3b32c3

Please sign in to comment.