From 2ef14d60f3d665f5cbac51d081c9bb3bfc046052 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Fri, 21 Oct 2022 22:47:25 -0400 Subject: [PATCH] Update pending message error (#80763) --- homeassistant/components/websocket_api/http.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/homeassistant/components/websocket_api/http.py b/homeassistant/components/websocket_api/http.py index 7336fa1c0d2..23c8fddd56c 100644 --- a/homeassistant/components/websocket_api/http.py +++ b/homeassistant/components/websocket_api/http.py @@ -155,7 +155,8 @@ class WebSocketHandler: return self._logger.error( - "Client unable to keep up with pending messages. Stayed over %s for %s seconds", + "Client unable to keep up with pending messages. Stayed over %s for %s seconds. " + "The system's load is too high or an integration is misbehaving", PENDING_MSG_PEAK, PENDING_MSG_PEAK_TIME, )