workspace: remove worker lifecycle state

This commit is contained in:
2026-07-11 13:33:49 +09:00
parent 13f9e0fab8
commit b877c92975
6 changed files with 142 additions and 52 deletions
@@ -163,7 +163,6 @@ export type CleanupWorkerCandidate = {
blocking_reason?: string | null;
pinned: boolean;
retention_state: string;
lifecycle_state: string;
linked_workdir_ids: string[];
running_linked: boolean;
estimated_reclaim_bytes?: number | null;
@@ -127,7 +127,7 @@
/>
<span>
<strong>Delete Worker registry row:</strong> <code>{candidate.runtime_worker_id}</code>
<small>{candidate.lifecycle_state}; {candidate.retention_state}; linked Workdirs {candidate.linked_workdir_ids.length}</small>
<small>{candidate.retention_state}; linked Workdirs {candidate.linked_workdir_ids.length}</small>
{#if candidate.blocking_reason}<small class="error">Blocked: {candidate.blocking_reason}</small>{/if}
</span>
</label>