Skip to content

Commit

Permalink
Merge pull request #5 from gravitational/evan/aws-dynamodb/fix-pagina…
Browse files Browse the repository at this point in the history
…tion
  • Loading branch information
evanfreed authored Oct 31, 2023
2 parents f458577 + 6a73d88 commit c9e4ce6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws_quota/check/dynamodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ class TableCountCheck(QuotaCheck):

@property
def current(self):
return len(self.boto_session.client('dynamodb').list_tables()['TableNames'])
return self.count_paginated_results("dynamodb", "list_tables", "TableNames" )

0 comments on commit c9e4ce6

Please sign in to comment.