Make sure droplet deletion works even when idempotency is achieved using 'name' and 'unique_name' rather than 'id'
This commit is contained in:
parent
92feed3851
commit
bf79833c9d
1 changed files with 1 additions and 1 deletions
|
@ -348,7 +348,7 @@ def core(module):
|
|||
|
||||
elif state in ('absent', 'deleted'):
|
||||
# First, try to find a droplet by id.
|
||||
droplet = Droplet.find(id=getkeyordie('id'))
|
||||
droplet = Droplet.find(module.params['id'])
|
||||
|
||||
# If we couldn't find the droplet and the user is allowing unique
|
||||
# hostnames, then check to see if a droplet with the specified
|
||||
|
|
Loading…
Reference in a new issue