Silented engine.io exception when client session as expired on server side

This commit is contained in:
morpheus65535 2023-12-05 21:50:41 -05:00 committed by GitHub
parent 4b7cdbc5f3
commit a3b32c3ebf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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(_):