flux account-fetch-job-records uses flux.job.job_list_inactive() to fetch all jobs that have finished since a certain time. However, it does not set a value for max_entries, which defaults to 1000. This would mean that it could miss fetching certain jobs if more than 1000 completed since a certain time.
This PR sets max_entries to 0 to get all jobs that have finished since a certain timestamp.
Problem
flux account-fetch-job-records
usesflux.job.job_list_inactive()
to fetch all jobs that have finished since a certain time. However, it does not set a value formax_entries
, which defaults to 1000. This would mean that it could miss fetching certain jobs if more than 1000 completed since a certain time.This PR sets
max_entries
to 0 to get all jobs that have finished since a certain timestamp.Fixes #515