From 68065e3982c7319328da32a2e619bbcbb704d64c Mon Sep 17 00:00:00 2001 From: Dave North Date: Tue, 25 Sep 2018 11:08:52 -0400 Subject: [PATCH] Delay between each call --- src/aws-target-group-cleanup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/aws-target-group-cleanup.py b/src/aws-target-group-cleanup.py index 0f44148..d44350d 100644 --- a/src/aws-target-group-cleanup.py +++ b/src/aws-target-group-cleanup.py @@ -71,6 +71,7 @@ def main(argv): print("REMOVED (request id " + request_id + ")") else: print("ERROR") + sleep(0.3) # try not to over-run LB api throughput else: print("DRYRUN,no deletion took place")