Skip to content

Commit

Permalink
Check if growth is fixed or unbounded
Browse files Browse the repository at this point in the history
  • Loading branch information
nateprewitt committed Aug 23, 2024
1 parent 72c7955 commit 1e0c102
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/functional/leak/test_resource_leaks.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def test_create_single_waiter_memory_constant(self):
self.cmd('create_waiter', 's3', 'bucket_exists')
self.cmd('free_waiters')
self.record_memory()
for _ in range(100):
for _ in range(500):
self.cmd('create_waiter', 's3', 'bucket_exists')
self.cmd('free_waiters')
self.record_memory()
Expand All @@ -93,7 +93,7 @@ def test_create_single_paginator_memory_constant(self):
self.cmd('create_paginator', 's3', 'list_objects')
self.cmd('free_paginators')
self.record_memory()
for _ in range(100):
for _ in range(500):
self.cmd('create_paginator', 's3', 'list_objects')
self.cmd('free_paginators')
self.record_memory()
Expand Down

0 comments on commit 1e0c102

Please sign in to comment.