refactor(monorepo): rename operator api runtime

This commit is contained in:
2026-03-20 14:46:04 +08:00
parent bc08feda59
commit 4a324d841e
19 changed files with 106 additions and 47 deletions
+3 -3
View File
@@ -107,7 +107,7 @@ export function RunsPage() {
<LoadingState count={4} />
) : runsQuery.isError ? (
<QueryErrorState
description="The runs endpoint did not return data. Make sure `orchd` is running and the dev server can reach it."
description="The runs endpoint did not return data. Make sure the operator API is running and the dev server can reach it."
onRetry={() => void runsQuery.refetch()}
title="Unable to load orchestration runs"
/>
@@ -186,7 +186,7 @@ export function BlockedQueuePage() {
<LoadingState count={3} />
) : blockedQuery.isError ? (
<QueryErrorState
description="The queue view composes run summaries with per-run blocked endpoints. Check that `orchd` is reachable."
description="The queue view composes run summaries with per-run blocked endpoints. Check that the operator API is reachable."
onRetry={() => void blockedQuery.refetch()}
title="Unable to load the blocked queue"
/>
@@ -465,7 +465,7 @@ export function ThreadTimelinePage({ threadId }: { threadId: string }) {
if (threadQuery.isError) {
return (
<QueryErrorState
description="The selected thread could not be loaded. Make sure the thread id is still valid and `orchd` can reach the shared SQLite database."
description="The selected thread could not be loaded. Make sure the thread id is still valid and the operator API can reach the shared SQLite database."
onRetry={() => void threadQuery.refetch()}
title={`Unable to load thread ${threadId}`}
/>