From e48abb2c7295e29494957caf313e63dcd42d40e1 Mon Sep 17 00:00:00 2001 From: tcely Date: Mon, 24 Mar 2025 12:28:10 -0400 Subject: [PATCH] Use `locked_at` as it is closer to started `run_at` is when it was ready to be processed. `locked_at` is when it was taken out of the queue. --- tubesync/sync/templates/sync/tasks.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubesync/sync/templates/sync/tasks.html b/tubesync/sync/templates/sync/tasks.html index 2b7a1250..9cb9dfe1 100644 --- a/tubesync/sync/templates/sync/tasks.html +++ b/tubesync/sync/templates/sync/tasks.html @@ -25,7 +25,7 @@ {% for task in running %} {{ task }}
- Task started at {{ task.run_at|date:'Y-m-d H:i:s' }} + Task started at {{ task.locked_at|date:'Y-m-d H:i:s' }}
{% empty %} There are no running tasks.