Potential fix for 640
This commit is contained in:
parent
fbb9dcc69a
commit
6cbce4d911
1 changed files with 3 additions and 1 deletions
|
@ -357,7 +357,9 @@ class ElastiCacheManager(object):
|
|||
'modifying': 'available',
|
||||
'deleting': 'gone'
|
||||
}
|
||||
|
||||
if self.status == awaited_status:
|
||||
# No need to wait, we're already done
|
||||
return
|
||||
if status_map[self.status] != awaited_status:
|
||||
msg = "Invalid awaited status. '%s' cannot transition to '%s'"
|
||||
self.module.fail_json(msg=msg % (self.status, awaited_status))
|
||||
|
|
Loading…
Reference in a new issue