Skip to content

Commit

Permalink
Fix bug with SQL query for analysis view (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisPaulBennett authored Aug 21, 2023
1 parent 3fdfafa commit b1f3e1a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cylc/uiserver/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,9 +381,9 @@ def make_query(conn, workflow):
STRFTIME('%s', time_run) -
STRFTIME('%s', time_submit) AS queue_time
FROM
task_jobs))
WHERE
run_status = 0
task_jobs
WHERE
run_status = 0))
GROUP BY
name;
'''):
Expand Down

0 comments on commit b1f3e1a

Please sign in to comment.