1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Do not try to encode metadata if it is None (#46739)

* Do not try to encode metadata if it is None

* Add changelog fragment

* Fix fragment missing EOF line
This commit is contained in:
Thomas Picariello 2018-10-10 12:14:47 +02:00 committed by Martin Krizek
parent fcef4fdb26
commit 62d131716b
2 changed files with 3 additions and 1 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- "gcp_compute_instance - fix crash when the instance metadata is not set"

View file

@ -1106,7 +1106,7 @@ def raise_if_errors(response, err_path, module):
def encode_request(request, module):
if 'metadata' in request:
if 'metadata' in request and request['metadata'] is not None:
request['metadata'] = metadata_encoder(request['metadata'])
return request