Merge pull request #2878 from pulumi/jen20/fix-2782

Use literal string "value" in returned dictionary
This commit is contained in:
James Nugent 2019-06-25 22:06:17 +01:00 committed by GitHub
commit 352a4e79a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -3,6 +3,8 @@ CHANGELOG
## HEAD (Unreleased) ## HEAD (Unreleased)
- Python SDK fix for a crash resulting from a KeyError if secrets were used in configuration.
## 0.17.20 (2019-06-23) ## 0.17.20 (2019-06-23)
- SDK fix for crash that could occasionally happen if there were multiple identical aliases to the - SDK fix for crash that could occasionally happen if there were multiple identical aliases to the

View file

@ -223,7 +223,7 @@ def deserialize_properties(props_struct: struct_pb2.Struct) -> Any:
if had_secret: if had_secret:
return { return {
_special_sig_key: _special_secret_sig, _special_sig_key: _special_secret_sig,
value: output "value": output
} }
return output return output