Skip to content

Commit

Permalink
* fix(manage_user_jobs.py): change default value of show_job_status f…
Browse files Browse the repository at this point in the history
…rom False to True
  • Loading branch information
AntreasAntoniou committed Oct 28, 2023
1 parent 1dc9821 commit 048a3c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kubejobs/manage_user_jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def list_or_delete_jobs_by_user(
username: str,
term: str,
delete: bool = False,
show_job_status: bool = False,
show_job_status: bool = True,
) -> None:
# Fetch all jobs from a specific Kubernetes namespace
get_jobs_cmd = f"kubectl get jobs -n {namespace} -o json"
Expand Down

0 comments on commit 048a3c9

Please sign in to comment.