MCPcopy Create free account
hub / github.com/agentforce314/clawcodex / mark_running

Method mark_running

src/server/session_manager.py:112–119  ·  view source on GitHub ↗
(self, session_id: str)

Source from the content-addressed store, hash-verified

110 info.process = process
111
112 def mark_running(self, session_id: str) -> None:
113 info = self._sessions.get(session_id)
114 if info is None:
115 return
116 now = time.time()
117 info.status = SessionState.RUNNING
118 info.last_active_at = now
119 update_last_active(session_id, now, path=self.index_path)
120
121 def mark_detached(self, session_id: str) -> None:
122 info = self._sessions.get(session_id)

Calls 2

update_last_activeFunction · 0.85
getMethod · 0.45