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
This is currently an intentional limitation of the library — the call to aws-sdk-js's s3.listObjectsV2 function only returns 1,000 objects, and expects you to further paginate to get more than this.
For the majority of projects this probably isn't an issue. Until it is! (FWIW we've never hit it at the LA Times, I think we hit it once or twice at Texas Tribune over the span of like 5-6 years.)
Now that it's acceptable to have our minimum supported Node version as v10, we can use async iterators to make this a cinch.
The text was updated successfully, but these errors were encountered:
This is currently an intentional limitation of the library — the call to
aws-sdk-js
'ss3.listObjectsV2
function only returns 1,000 objects, and expects you to further paginate to get more than this.For the majority of projects this probably isn't an issue. Until it is! (FWIW we've never hit it at the LA Times, I think we hit it once or twice at Texas Tribune over the span of like 5-6 years.)
Now that it's acceptable to have our minimum supported Node version as
v10
, we can use async iterators to make this a cinch.The text was updated successfully, but these errors were encountered: