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 Toshio Kuratomi
parent cb173f7f1d
commit 2f622fc336
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