mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
use proper pagination variable (#25838)
This commit is contained in:
@@ -214,7 +214,7 @@ class ElbInformation(object):
|
|||||||
get_elb_with_backoff = AWSRetry.backoff(tries=5, delay=5, backoff=2.0)(self.connection.get_all_load_balancers)
|
get_elb_with_backoff = AWSRetry.backoff(tries=5, delay=5, backoff=2.0)(self.connection.get_all_load_balancers)
|
||||||
while True:
|
while True:
|
||||||
all_elbs = get_elb_with_backoff(marker=token)
|
all_elbs = get_elb_with_backoff(marker=token)
|
||||||
token = all_elbs.next_token
|
token = all_elbs.next_marker
|
||||||
|
|
||||||
if all_elbs:
|
if all_elbs:
|
||||||
if self.names:
|
if self.names:
|
||||||
|
|||||||
Reference in New Issue
Block a user