You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python 3.13 raises an exception with how we buffer things to send to the apm server. When the gzip object is closed it raises an exception because the BytesIO used as its backing storage is already gone.
Filed an upstream issue python/cpython#129726 so waiting for some feedback here before reworking our code.
The text was updated successfully, but these errors were encountered:
No custom SERVICE_NAME was set -- using non-descript default 'unknown-python-service'
Could not register elasticapm.metrics.sets.cpu.CPUMetricSet metricset: psutil not found. Install it to get system and process metrics
Exception ignored in: <gzip on 0x10443e590>
Traceback (most recent call last):
File "/Users/maksych/.local/share/uv/python/cpython-3.13.0-macos-aarch64-none/lib/python3.13/gzip.py", line 378, in close
fileobj.write(self.compress.flush())
ValueError: I/O operation on closed file.
Python 3.13 raises an exception with how we buffer things to send to the apm server. When the gzip object is closed it raises an exception because the BytesIO used as its backing storage is already gone.
Filed an upstream issue python/cpython#129726 so waiting for some feedback here before reworking our code.
The text was updated successfully, but these errors were encountered: