mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Potential fix for 640
This commit is contained in:
committed by
Matt Clay
parent
ea77ac076b
commit
f3d41cdb06
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user