Fix: Should not break from ipresolver thread
This commit is contained in:
parent
bff91c0fb9
commit
7563d97be4
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ class _UpdateIPRange(Thread):
|
||||||
except:
|
except:
|
||||||
logger.exception('Failed trying to update aws ip range')
|
logger.exception('Failed trying to update aws ip range')
|
||||||
time.sleep(_FAILED_UPDATE_RETRY_SECS)
|
time.sleep(_FAILED_UPDATE_RETRY_SECS)
|
||||||
break
|
continue
|
||||||
|
|
||||||
sync_token = aws_ip_range_json['syncToken']
|
sync_token = aws_ip_range_json['syncToken']
|
||||||
all_amazon, regions = IPResolver._parse_amazon_ranges(aws_ip_range_json)
|
all_amazon, regions = IPResolver._parse_amazon_ranges(aws_ip_range_json)
|
||||||
|
|
Reference in a new issue