MCPcopy Create free account
hub / github.com/EvoMap/evolver / listRuns

Function listRuns

src/webui/observer/runs.js:26–29  ·  view source on GitHub ↗
(query = {})

Source from the content-addressed store, hash-verified

24const STUCK_THRESHOLD_MS = parseInt(process.env.EVOLVER_RUN_STUCK_THRESHOLD_MS, 10) || (30 * 60 * 1000);
25
26function listRuns(query = {}) {
27 const runs = buildRuns().sort((a, b) => timestampOf(b.updatedAt) - timestampOf(a.updatedAt));
28 return paginate(runs, query);
29}
30
31function getRun(runId) {
32 const runs = buildRuns();

Callers

nothing calls this directly

Calls 3

buildRunsFunction · 0.85
timestampOfFunction · 0.85
paginateFunction · 0.85

Tested by

no test coverage detected