Deprecation: JSON Auto Inflate (CHEF-1)

[edit on GitHub]

Internally, the Chef::REST class attempts to guess which Chef class a JSON document relates too, and then automatically turns the JSON in to that class.

This deprecation warning was added in Chef Client 12.7.2, and JSON auto inflation will be removed permanently in Chef Client 13.

Example

When loading an environment from the Chef Infra Server, you might previously have written:

name = 'my_environment'
chef_server_rest.get("environments/#{name}")

and received a Chef::Environment object back.

Remediation

You now need to explicitly create a new object of the desired type.

name = 'my_environment'
Chef::Environment.from_hash chef_server_rest.get("environments/#{name}")

© Chef Software, Inc.
Licensed under the Creative Commons Attribution 3.0 Unported License.
The Chef™ Mark and Chef Logo are either registered trademarks/service marks or trademarks/servicemarks of Chef, in the United States and other countries and are used with Chef Inc's permission.
We are not affiliated with, endorsed or sponsored by Chef Inc.
https://docs.chef.io/deprecations_json_auto_inflate/