From 765914929f99578e4767bbfb407b49a234e43f1c Mon Sep 17 00:00:00 2001 From: maheshsattala <59285563+maheshsattala@users.noreply.github.com> Date: Thu, 25 Jul 2024 13:53:49 +0530 Subject: [PATCH] live_agent incorrect resp logging removed from live agent status for unsuccessful requests (#1369) --- kairon/shared/live_agent/live_agent.py | 1 - 1 file changed, 1 deletion(-) diff --git a/kairon/shared/live_agent/live_agent.py b/kairon/shared/live_agent/live_agent.py index fb2a1529d..c759c4392 100644 --- a/kairon/shared/live_agent/live_agent.py +++ b/kairon/shared/live_agent/live_agent.py @@ -91,7 +91,6 @@ async def check_live_agent_active(bot_id, userdata: UserMessage): } res, status, _, _ = await ActionUtility.execute_request_async(url, 'GET', None, headers) if status != 200: - logger.error(res.get('message', "Failed to process request")) return False return res['data']['status']