Skip to content

Commit

Permalink
Reduce limiter to 100
Browse files Browse the repository at this point in the history
  • Loading branch information
David-Melamed committed Aug 15, 2024
1 parent 2f34560 commit 0cab1cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambda/service_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def list_discovered_resources(config_client, resource_type):
paginator = config_client.get_paginator('list_discovered_resources')
response_iterator = paginator.paginate(
resourceType=resource_type,
limit=1000
limit=100
)

resources = []
Expand Down

0 comments on commit 0cab1cc

Please sign in to comment.