Skip to content

Commit

Permalink
fix: bump max keys returned by manifest listing
Browse files Browse the repository at this point in the history
The full LWJGL 3.3.4 build contains more than 500 files.
  • Loading branch information
Spasi committed Mar 22, 2024
1 parent 452d2e7 commit 80799a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/routes/bin.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default async params => {
let data = await s3.listObjectsV2({
Bucket: 'lwjgl-build',
FetchOwner: false,
MaxKeys: 500,
MaxKeys: 1000,
Prefix: params.build === 'release' ? `${params.build}/${params.version}/bin/` : `${params.build}/bin/`,
});

Expand Down

0 comments on commit 80799a4

Please sign in to comment.