remove connect-response emit
Browse files
app.py
CHANGED
@@ -494,7 +494,6 @@ def handle_connect():
|
|
494 |
@socketio.on('connect')
|
495 |
def handle_connect():
|
496 |
print(f"Client connected: {request.sid}")
|
497 |
-
emit('connection_response', {'message': 'Connected successfully.'})
|
498 |
|
499 |
# Function to handle WebSocket disconnection
|
500 |
@socketio.on('disconnect')
|
|
|
494 |
@socketio.on('connect')
|
495 |
def handle_connect():
|
496 |
print(f"Client connected: {request.sid}")
|
|
|
497 |
|
498 |
# Function to handle WebSocket disconnection
|
499 |
@socketio.on('disconnect')
|