fix(core): Do not report to Sentry successful ws close in native Python runner (#20257)

This commit is contained in:
Iván Ovejero
2025-10-01 20:42:59 +02:00
committed by GitHub
parent 4842539aa0
commit 4ca6e4f29f
@@ -201,6 +201,8 @@ class TaskRunner:
try:
message = self.serde.deserialize_broker_message(raw_message)
await self._handle_message(message)
except websockets.ConnectionClosedOK:
break
except Exception as e:
self.logger.error(f"Error handling message: {e}")