Skip to content

Commit

Permalink
Merge pull request #176 from FlowFuse/hardillb-patch-1
Browse files Browse the repository at this point in the history
Ensure full count of EFS AccessPoints
  • Loading branch information
hardillb authored Aug 27, 2024
2 parents b27506f + dafe4ab commit 5451a2f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/aws-efs.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ async function lookupStorageClass (tagName) {
if (found) {
// console.log(storageClass)
const apParams = {
FileSystemId: fsList.FileSystems[i].FileSystemId
FileSystemId: fsList.FileSystems[i].FileSystemId,
MaxResults: 999
}
// console.log(apParams)
const apListCommand = new DescribeAccessPointsCommand(apParams)
Expand All @@ -51,4 +52,4 @@ async function lookupStorageClass (tagName) {

module.exports = {
lookupStorageClass
}
}

0 comments on commit 5451a2f

Please sign in to comment.