Fix race in test_aws_resource_cleanup
If the test was slow enough that the image was not immediately deleted, we would fail the assertIsNone because image.state=='available'. Correct this by continuing to iterate in the wait loop while that's true. Change-Id: I6ee14c5737abe37d90d6b57442644085b08f30ab
This commit is contained in:
parent
e668905f08
commit
025318b825
@ -498,7 +498,9 @@ class TestDriverAws(tests.DBTestCase):
|
||||
image = self.ec2.Image(image_id)
|
||||
try:
|
||||
# If this has a value the image was not deleted
|
||||
self.assertIsNone(image.state)
|
||||
if image.state == 'available':
|
||||
# Definitely not deleted yet
|
||||
continue
|
||||
except AttributeError:
|
||||
# Per AWS API, a recently deleted image is empty and
|
||||
# looking at the state raises an AttributeFailure; see
|
||||
|
Loading…
x
Reference in New Issue
Block a user