mirror of
https://github.com/RogerSik/aws-target-group-cleanup.git
synced 2024-11-24 00:30:28 +01:00
Handle throughput exception
This commit is contained in:
parent
ed01feda01
commit
324cea074d
@ -2,10 +2,11 @@ import sys
|
|||||||
import boto3
|
import boto3
|
||||||
import argparse
|
import argparse
|
||||||
import pprint
|
import pprint
|
||||||
|
from time import sleep
|
||||||
|
|
||||||
def remove_target_group(arn, elb_client):
|
def remove_target_group(arn, elb_client):
|
||||||
request_id = None
|
request_id = None
|
||||||
|
response = None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
response = elb_client.delete_target_group(
|
response = elb_client.delete_target_group(
|
||||||
@ -13,6 +14,7 @@ def remove_target_group(arn, elb_client):
|
|||||||
)
|
)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print("Error removing target group " + arn + " (" + str(e) + ")")
|
print("Error removing target group " + arn + " (" + str(e) + ")")
|
||||||
|
sleep(0.5) # We could be throttled so we will delay here if so...
|
||||||
|
|
||||||
if response:
|
if response:
|
||||||
if response['ResponseMetadata']['HTTPStatusCode'] == 200:
|
if response['ResponseMetadata']['HTTPStatusCode'] == 200:
|
||||||
|
Loading…
Reference in New Issue
Block a user