Fix for issue where conversations won't start (#11633)

This commit is contained in:
Tim O'Farrell
2025-11-04 08:51:22 -07:00
committed by GitHub
parent 4ea3e4b1fd
commit 30b5ad1768
6 changed files with 23 additions and 23 deletions

View File

@@ -273,7 +273,7 @@ class SQLAppConversationInfoService(AppConversationInfoService):
user_id = await self.user_context.get_user_id()
if user_id:
query = select(StoredConversationMetadata).where(
StoredConversationMetadata.conversation_id == info.id
StoredConversationMetadata.conversation_id == str(info.id)
)
result = await self.db_session.execute(query)
existing = result.scalar_one_or_none()

View File

@@ -11,7 +11,7 @@ from openhands.sdk.utils.models import DiscriminatedUnionMixin
# The version of the agent server to use for deployments.
# Typically this will be the same as the values from the pyproject.toml
AGENT_SERVER_IMAGE = 'ghcr.io/openhands/agent-server:be9725b-python'
AGENT_SERVER_IMAGE = 'ghcr.io/openhands/agent-server:23c8436-python'
class SandboxSpecService(ABC):