mirror of
https://github.com/tig-foundation/tig-monorepo.git
synced 2026-02-21 10:27:49 +08:00
Minor fixes to benchmarker.
This commit is contained in:
parent
dd7d94a017
commit
7eec3541c4
@ -223,9 +223,9 @@ class JobManager:
|
||||
get_db_conn().execute(
|
||||
"""
|
||||
UPDATE job
|
||||
SET stopped = true
|
||||
WHERE end_time IS NULL
|
||||
AND stopped IS NULL
|
||||
SET stopped = true,
|
||||
end_time = (EXTRACT(EPOCH FROM NOW()) * 1000)::BIGINT
|
||||
WHERE (stopped IS NULL OR end_time IS NULL)
|
||||
AND %s >= block_started + 120
|
||||
""",
|
||||
(block.details.height,)
|
||||
|
||||
@ -101,7 +101,6 @@
|
||||
</th>
|
||||
|
||||
<th pSortableColumn="status" class="tig-dark text-center">STATUS</th>
|
||||
<th pSortableColumn="num_attempts" class="tig-dark text-center">#ATTEMPTS</th>
|
||||
<th pSortableColumn="time_elapsed" class="tig-dark text-center">
|
||||
ELAPSED
|
||||
</th>
|
||||
@ -223,6 +222,7 @@
|
||||
<th pSortableColumn="status" class="tig-dark text-center">
|
||||
STATUS
|
||||
</th>
|
||||
<th pSortableColumn="num_attempts" class="tig-dark text-center">#ATTEMPTS</th>
|
||||
<th pSortableColumn="status" class="tig-dark text-center">
|
||||
ELAPSED
|
||||
</th>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user