mirror of
https://github.com/hibiken/asynqmon.git
synced 2025-08-24 14:48:42 +08:00
Rename DeadTask to ArchivedTask, and action Kill to Archive
This commit is contained in:
@@ -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>
|
||||
}
|
||||
|
@@ -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() {
|
||||
|
Reference in New Issue
Block a user