Open lexxiebelle opened 4 years ago
You can add return stop if (lo = @last_output) && lo.truncated? && lo.next_token.empty? in Awscr::S3::Paginator::ListObjectsV2#next ?
return stop if (lo = @last_output) && lo.truncated? && lo.next_token.empty?
Without a continuation-token, an infinite loop occurs if the number of objects > max_keys in the request parameters.
Thank you
You can add
return stop if (lo = @last_output) && lo.truncated? && lo.next_token.empty?
in Awscr::S3::Paginator::ListObjectsV2#next ?Without a continuation-token, an infinite loop occurs if the number of objects > max_keys in the request parameters.
Thank you