Skip to content

Commit

Permalink
Fix job search statement building
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Oct 16, 2024
1 parent a079de5 commit f075511
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/managers/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ def replace_dataset_ids(path, key, value):
else:
return []

stmt = stmt.where(*data_conditions).group_by(model.Job.id, *used_ids).order_by(model.Job.id.desc())
stmt = stmt.where(*data_conditions).group_by(model.Job.id, *used_ids).order_by(model.Job.id.desc())

from sqlalchemy.dialects import postgresql

Expand Down

0 comments on commit f075511

Please sign in to comment.