-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
P0Priority: criticalPriority: criticalbackendBackend relatedBackend relatedbugSomething isn't workingSomething isn't working
Description
Problem
The live sensor API module (api/live.py) defines a complete router with WebSocket and REST endpoints for real-time SBG sensor data streaming. However, the router is never included in the main FastAPI application. The include_in_app() function exists but is never called from api/main.py.
Impact
All /api/live/* endpoints are unreachable, making real-time monitoring and the live dashboard non-functional.
Steps to fix
- Import
include_in_appfromapi/liveinapi/main.py - Call
include_in_app(app)in thecreate_app()function - Verify endpoints are accessible
- Add integration tests
Files
api/main.py(create_app function)api/live.py(endpoint definitions)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
P0Priority: criticalPriority: criticalbackendBackend relatedBackend relatedbugSomething isn't workingSomething isn't working