* [elasticsearch] the PIN object was previously attached to the `elasticsearch` module while now it uses `elasticsearch.Transport`. If you were using the `Pin` to override some tracing settings, you must update your code from:
python
Pin.override(client, service='elasticsearch-traces')
to:
python
Pin.override(client.transport, service='elasticsearch-traces')
**Internals update**
* the Python traces logs and returns error when there is a communication issue with the APM Agent (173)
* the `wrap()` tracer decorator can be extended by Python integrations when the usual approach is not suitable for the given execution context (221)
Read the [full changeset][2].
[1]: http://pypi.datadoghq.com/trace/docs/#module-ddtrace.contrib.tornado
[2]: https://github.com/DataDog/dd-trace-py/compare/v0.7.0...v0.8.0
---