refactor(resources): rename cforch → cf-orch in FastAPI titles
This commit is contained in:
parent
4bcd297b18
commit
dba49a47fe
2 changed files with 2 additions and 2 deletions
|
|
@ -25,7 +25,7 @@ def create_agent_app(
|
|||
_monitor = monitor or GpuMonitor()
|
||||
_executor = executor or EvictionExecutor()
|
||||
|
||||
app = FastAPI(title=f"cforch-agent [{node_id}]")
|
||||
app = FastAPI(title=f"cf-orch-agent [{node_id}]")
|
||||
|
||||
@app.get("/health")
|
||||
def health() -> dict[str, Any]:
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ def create_coordinator_app(
|
|||
) -> FastAPI:
|
||||
eviction_engine = EvictionEngine(lease_manager=lease_manager)
|
||||
|
||||
app = FastAPI(title="cforch-coordinator")
|
||||
app = FastAPI(title="cf-orch-coordinator")
|
||||
|
||||
@app.get("/api/health")
|
||||
def health() -> dict[str, Any]:
|
||||
|
|
|
|||
Loading…
Reference in a new issue