GitHub user paul-k-civitas opened a pull request:
https://github.com/apache/atlas/pull/21
Fixed AtlasClientV2.updateClassifications() to not expect a return body
Right now, the `AtlasClientV2.updateClassifications()` method is not
functional because it expects a response body that can be deserialized into an
`AtlasClassifications` instance, but the [response according to the REST
API](https://atlas.apache.org/api/v2/resource_EntityREST.html#resource_EntityREST_updateClassifications_PUT)
will be empty, with a status code of `204 No Content`. This change fixes the
client so that the response's body will not be de-serialized.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/paul-k-civitas/atlas
fix-update-classifications-clientv2
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/atlas/pull/21.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #21
----
commit 18d0e1c7da35725a4ec6c2f8cae7585aa6ab72dc
Author: Paul Khermouch <paul.khermouch@...>
Date: 2018-12-14T21:15:40Z
Fixed AtlasClientV2.updateClassifications() to not expect a return body
----
---