Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/routers/compute/compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ async def get_job_status(
job_id: str,
request: Request,
user: User = Depends(router.current_user),
historical: StrictHTTPBool | None = Query(default=False, description="Whether to include historical jobs. Defaults to false"),
historical: StrictHTTPBool | None = Query(default=True, description="Whether to include historical jobs. Defaults to true"),
include_spec: StrictHTTPBool | None = Query(default=False, description="Whether to include the job specification. Defaults to false"),
_forbid=Depends(forbidExtraQueryParams("historical", "include_spec")),
):
Expand Down
2 changes: 1 addition & 1 deletion app/routers/compute/facility_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async def get_job(
resource: status_models.Resource,
user: User,
job_id: str,
historical: bool = False,
historical: bool = True,
include_spec: bool = False,
) -> compute_models.Job:
pass
Expand Down
Loading