Skip to content

Commit 238db79

Browse files
fix: update timestamp retrieval to use asyncio event loop
1 parent 5a5a550 commit 238db79

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/backend/v4/orchestration/orchestration_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ async def run_orchestration(self, user_id: str, input_task, plan_id: Optional[st
587587
"data": {
588588
"content": user_error_message,
589589
"status": "error",
590-
"timestamp": _time.time(),
590+
"timestamp": asyncio.get_event_loop().time(),
591591
},
592592
},
593593
user_id,

0 commit comments

Comments
 (0)