mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-06 10:50:28 -07:00
fix gcp_spanner_database delete
gcp_spanner_database erroneously used LRO handling on delete, rather than a standard synchronous function. One side effect was not catching 404s as a not found error code.
This commit is contained in:
parent
50076e7f36
commit
44eb7c2d29
2 changed files with 2 additions and 3 deletions
|
@ -286,7 +286,7 @@ def extra_statements_update(module, request, response):
|
||||||
|
|
||||||
def delete(module, link):
|
def delete(module, link):
|
||||||
auth = GcpSession(module, 'spanner')
|
auth = GcpSession(module, 'spanner')
|
||||||
return wait_for_operation(module, auth.delete(link))
|
return return_if_object(module, auth.delete(link))
|
||||||
|
|
||||||
|
|
||||||
def resource_to_request(module):
|
def resource_to_request(module):
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
cloud/gcp
|
cloud/gcp
|
||||||
unsupported
|
|
Loading…
Add table
Reference in a new issue