Closed tfrcarvalho closed 4 years ago
FYI the SDK has built-in paginators for this that remove the need to handle the pagination tokens yourself.
FYI the SDK has built-in paginators for this that remove the need to handle the pagination tokens yourself.
Thank you @kislyuk ! I actually looked last night and could not find reference to paginators in the ruby SDK but since you commented again on this I looked again and found the inner iterator. Maybe I was just too tired. Code updated.
Description
This bug was caused by a combinations of:
- flattening of results in s3
- by the number of align and coverage viz file and
- lack of pagination
This PR:
- Add pagination to output fetching
- Remove redundant s3 fetches since all files are in the same folder now.
Tests
- Tested locally and confirmed that reads table loads and all outputs are listed in results folder.
Wow! Nice find, who would have thought.
Description
Jira IDSEQ-2842
This bug was caused by a combinations of:
This PR:
Tests