From 44fbd6c1b923192eb46c6c29fa6feaeddaa57c7a Mon Sep 17 00:00:00 2001 From: Hiep Le <69354317+hieptl@users.noreply.github.com> Date: Wed, 5 Nov 2025 23:45:16 +0700 Subject: [PATCH] refactor(backend): the delete_app_conversation_info function (#11648) --- .../app_conversation/sql_app_conversation_info_service.py | 1 - 1 file changed, 1 deletion(-) diff --git a/openhands/app_server/app_conversation/sql_app_conversation_info_service.py b/openhands/app_server/app_conversation/sql_app_conversation_info_service.py index 5ebb9481b6..0990411485 100644 --- a/openhands/app_server/app_conversation/sql_app_conversation_info_service.py +++ b/openhands/app_server/app_conversation/sql_app_conversation_info_service.py @@ -399,7 +399,6 @@ class SQLAppConversationInfoService(AppConversationInfoService): # Execute the secure delete query result = await self.db_session.execute(delete_query) - await self.db_session.commit() return result.rowcount > 0