Skip to content

Commit

Permalink
Merge pull request #516 from cmoussa1/issue#515
Browse files Browse the repository at this point in the history
fetch-job-records: set `max_entries=0`
  • Loading branch information
mergify[bot] authored Oct 16, 2024
2 parents f45add7 + 95a3681 commit c6497f0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/cmd/flux-account-fetch-job-records.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ def fetch_new_jobs(last_timestamp=0.0):

# construct and send RPC
rpc_handle = flux.job.job_list_inactive(
handle, attrs=custom_attrs, since=last_timestamp
handle,
attrs=custom_attrs,
since=last_timestamp,
max_entries=0,
)
jobs = get_jobs(rpc_handle)

Expand Down

0 comments on commit c6497f0

Please sign in to comment.