MCPcopy Create free account
hub / github.com/Tron521/codex-console-temp / get_selfcheck_run

Function get_selfcheck_run

src/core/system_selfcheck.py:802–805  ·  view source on GitHub ↗
(run_id: int)

Source from the content-addressed store, hash-verified

800
801
802def get_selfcheck_run(run_id: int) -> Optional[Dict[str, Any]]:
803 with get_db() as db:
804 run = db.query(SelfCheckRun).filter(SelfCheckRun.id == int(run_id)).first()
805 return _serialize_run(run) if run else None
806
807
808def _repair_clear_overview_cache() -> Dict[str, Any]:

Callers 7

_run_selfcheck_asyncFunction · 0.85
api_get_selfcheck_runFunction · 0.85
api_cancel_selfcheck_runFunction · 0.85
api_run_selfcheck_repairFunction · 0.85

Calls 5

get_dbFunction · 0.85
_serialize_runFunction · 0.85
firstMethod · 0.80
filterMethod · 0.45
queryMethod · 0.45

Tested by

no test coverage detected