Skip to content

Commit

Permalink
fix: update jobs sort order
Browse files Browse the repository at this point in the history
  • Loading branch information
jtyoung84 committed May 21, 2024
1 parent 4559333 commit f0f9cc6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/aind_data_transfer_service/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,8 @@ async def jobs(request: Request):
params={
"start_date_gte": (datetime.utcnow() - timedelta(days=7)).strftime(
"%Y-%m-%dT%H:%M:%SZ"
)
),
"order_by": "-start_date",
},
)
if response_jobs.status_code == 200:
Expand Down

0 comments on commit f0f9cc6

Please sign in to comment.