fix: disable edge_gpu and multi_modal_rl routers due to startup hang
Some checks failed
Cross-Node Transaction Testing / transaction-test (push) Successful in 3s
Deploy to Testnet / deploy-testnet (push) Has started running
Integration Tests / test-service-integration (push) Has been cancelled
Node Failover Simulation / failover-test (push) Has been cancelled
Python Tests / test-python (push) Has been cancelled
Security Scanning / security-scan (push) Has been cancelled
Multi-Node Stress Testing / stress-test (push) Successful in 13s

This commit is contained in:
aitbc
2026-05-03 22:51:48 +02:00
parent fae5c39985
commit b02f33d68b

View File

@@ -355,11 +355,11 @@ def create_app() -> FastAPI:
# Add blockchain router for CLI compatibility
app.include_router(blockchain, prefix="/v1")
# Add edge GPU router
app.include_router(edge_gpu, prefix="/v1")
# TODO: Add edge GPU router (disabled due to startup hang)
# app.include_router(edge_gpu, prefix="/v1")
# Add multi-modal RL router
app.include_router(multi_modal_rl, prefix="/v1")
# TODO: Add multi-modal RL router (disabled due to startup hang)
# app.include_router(multi_modal_rl, prefix="/v1")
# Add Prometheus metrics endpoint
metrics_app = make_asgi_app()