mirror of
https://github.com/n8n-io/n8n.git
synced 2026-08-30 18:01:23 +08:00
fix(core): Do not report to Sentry successful ws close in native Python runner (#20257)
This commit is contained in:
@@ -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}")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user