From ae5afc526a3b0017ebc25a00e7a1883df8d723f5 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Wed, 29 Apr 2026 11:41:33 -0400 Subject: [PATCH] Fix missing rsp on return --- confluent_server/confluent/httpapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/confluent_server/confluent/httpapi.py b/confluent_server/confluent/httpapi.py index cbea038c..e1e53533 100644 --- a/confluent_server/confluent/httpapi.py +++ b/confluent_server/confluent/httpapi.py @@ -573,7 +573,7 @@ async def wsock_handler(req): myconsoles[cons].destroy() if asess: asess.destroy() - return + return rsp if '/console/session' in ws.path or '/shell/sessions/' in ws.path: def datacallback(data): ws.send(websockify_data(data))