From 336b22bea4757e380d2932118cf792106403b4d7 Mon Sep 17 00:00:00 2001 From: Rohit Malhotra Date: Thu, 5 Jun 2025 17:52:30 -0400 Subject: [PATCH] [Fix]: add missing await (#8936) --- openhands/server/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openhands/server/utils.py b/openhands/server/utils.py index a717870445..cea64643a9 100644 --- a/openhands/server/utils.py +++ b/openhands/server/utils.py @@ -12,7 +12,7 @@ async def get_conversation_store(request: Request) -> ConversationStore | None: ) if conversation_store: return conversation_store - user_id = get_user_id(request) + user_id = await get_user_id(request) conversation_store = await ConversationStoreImpl.get_instance(config, user_id) request.state.conversation_store = conversation_store return conversation_store