Rename DeadTask to ArchivedTask, and action Kill to Archive

This commit is contained in:
Ken Hibino
2021-01-12 11:59:44 -08:00
parent 95eb3e0855
commit 34b6553d7d
19 changed files with 1071 additions and 650 deletions

View File

@@ -155,8 +155,8 @@ function DashboardView(props: Props) {
retried in the future
</div>
<div>
<strong>Dead</strong>: number of tasks exhausted their
retries
<strong>Archived</strong>: number of tasks exhausted
their retries
</div>
</div>
}

View File

@@ -29,7 +29,7 @@ interface RouteParams {
qname: string;
}
const validStatus = ["active", "pending", "scheduled", "retry", "dead"];
const validStatus = ["active", "pending", "scheduled", "retry", "archived"];
const defaultStatus = "active";
function TasksView() {