You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are submitting api status requests for jobs and including size parameter matching to our batch size. When we do that, we get back 1 less record than the batch size. We have to adjust size to be batch size + 1. So a batch size of 10 records means size parameter must be set to 11 to get back 10 records. Hence this works:
We are submitting api status requests for jobs and including size parameter matching to our batch size. When we do that, we get back 1 less record than the batch size. We have to adjust size to be batch size + 1. So a batch size of 10 records means size parameter must be set to 11 to get back 10 records. Hence this works:
query = '?page=0&size=' + str(int(options.batch)+1) + '&sortDirection=ASC&sortField=submitterSampleId&submissionId=' + submission_id;
So I'm guessing you would want to adjust the conditional on size so this incrementing isn't needed?
The text was updated successfully, but these errors were encountered: