Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jigold committed Nov 13, 2023
1 parent 58122fd commit 8cd2d89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion batch/batch/front_end/query/query_v1.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def parse_list_batches_query_v1(user: str, q: str, last_batch_id: Optional[int])
args = []
elif t == 'success':
# need complete because there might be no jobs
condition = "(`state` = 'complete' AND n_succeeded = n_jobs)"
condition = "(batches.`state` = 'complete' AND n_succeeded = n_jobs)"
args = []
else:
raise QueryError(f'Invalid search term: {t}.')
Expand Down

0 comments on commit 8cd2d89

Please sign in to comment.