@tangle-network/agent-bench 0.3.6 → 0.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/adapters.js +2 -2
- package/dist/benchmarks/humaneval.d.ts +10 -1
- package/dist/benchmarks/humaneval.js +5 -3
- package/dist/{chunk-PPYSEKFM.js → chunk-5H5XV76F.js} +73 -15
- package/dist/chunk-5H5XV76F.js.map +1 -0
- package/dist/{chunk-5SBJCB6W.js → chunk-PWQVGAJB.js} +2 -2
- package/dist/index.js +2 -2
- package/package.json +5 -4
- package/scripts/run-package-tests.mjs +30 -8
- package/scripts/verify-pier-agent.mts +1 -0
- package/src/benchmarks/humaneval.test.mts +122 -0
- package/src/benchmarks/humaneval.ts +100 -27
- package/src/david-attribution.mts +78 -0
- package/src/david-goliath.mts +149 -0
- package/src/hev-improve.mts +25 -6
- package/src/humaneval-object-ablation.mts +201 -0
- package/src/live-improve-campaign-mbpp.mts +641 -0
- package/src/live-improve-campaign.mts +500 -0
- package/src/mbpp-structural.mts +12 -7
- package/src/stream-observe.py +45 -0
- package/src/stream-observe.tpl.html +247 -0
- package/src/supervisor-arena.mts +816 -0
- package/src/swe-arena/analyze.ts +211 -0
- package/src/swe-arena/arms.ts +788 -0
- package/src/swe-arena/bootstrap-meta.mts +188 -0
- package/src/swe-arena/bootstrap-meta.test.mts +51 -0
- package/src/swe-arena/calibrate.ts +116 -0
- package/src/swe-arena/capabilities.mts +76 -0
- package/src/swe-arena/capabilities.test.mts +57 -0
- package/src/swe-arena/capacity.ts +194 -0
- package/src/swe-arena/cell-evidence.mts +405 -0
- package/src/swe-arena/cell-evidence.test.mts +248 -0
- package/src/swe-arena/diagnosis-ensemble.test.mts +210 -0
- package/src/swe-arena/diagnosis-ensemble.ts +520 -0
- package/src/swe-arena/execution.test.mts +1170 -0
- package/src/swe-arena/fixtures/analyze.py +80 -0
- package/src/swe-arena/fixtures/excludes.txt +8 -0
- package/src/swe-arena/fixtures/gen1-salvage/README.md +45 -0
- package/src/swe-arena/fixtures/gen1-salvage/cand0-e6d7361.diff +116 -0
- package/src/swe-arena/fixtures/gen1-salvage/cand1-76a8590.diff +293 -0
- package/src/swe-arena/fixtures/holdout-preregister.log +12 -0
- package/src/swe-arena/fixtures/holdout.json +44 -0
- package/src/swe-arena/fixtures/instances.json +146 -0
- package/src/swe-arena/fixtures/ledger.jsonl +12 -0
- package/src/swe-arena/fixtures/patches/pallets__flask-5014.solo.patch +36 -0
- package/src/swe-arena/fixtures/patches/pydata__xarray-4687.sup.patch +33 -0
- package/src/swe-arena/fixtures/rejudge.jsonl +15 -0
- package/src/swe-arena/fixtures/rematch.jsonl +3 -0
- package/src/swe-arena/fixtures/rematch2.jsonl +3 -0
- package/src/swe-arena/fixtures/rematch3.jsonl +3 -0
- package/src/swe-arena/fixtures/sup-journal-true.json +19 -0
- package/src/swe-arena/fixtures/verify/astropy__astropy-13033.sh +48 -0
- package/src/swe-arena/fixtures/verify/django__django-11532.sh +50 -0
- package/src/swe-arena/fixtures/verify/matplotlib__matplotlib-20826.sh +76 -0
- package/src/swe-arena/fixtures/verify/pydata__xarray-4687.sh +44 -0
- package/src/swe-arena/fixtures/verify/pytest-dev__pytest-6197.sh +32 -0
- package/src/swe-arena/fixtures/verify/sphinx-doc__sphinx-9658.sh +51 -0
- package/src/swe-arena/fixtures/worker-tokens.json +42 -0
- package/src/swe-arena/fixtures.ts +104 -0
- package/src/swe-arena/holdout-certify.mts +408 -0
- package/src/swe-arena/holdout-certify.test.mts +160 -0
- package/src/swe-arena/judge-child.mts +37 -0
- package/src/swe-arena/manifest.mts +293 -0
- package/src/swe-arena/manifest.test.mts +169 -0
- package/src/swe-arena/materialize.ts +142 -0
- package/src/swe-arena/outer-loop.mts +2145 -0
- package/src/swe-arena/outer-loop.test.mts +696 -0
- package/src/swe-arena/parity.test.mts +87 -0
- package/src/swe-arena/proc.test.mts +174 -0
- package/src/swe-arena/proc.ts +260 -0
- package/src/swe-arena/profiles/default-author.profile.json +4 -0
- package/src/swe-arena/proposer-fanout.mts +489 -0
- package/src/swe-arena/proposer-fanout.test.mts +372 -0
- package/src/swe-arena/reconcile.ts +0 -0
- package/src/swe-arena/replay.mts +183 -0
- package/src/swe-arena/replay.test.mts +300 -0
- package/src/swe-arena/run-experiment.mts +361 -0
- package/src/swe-arena/run-supervisor.mjs +297 -0
- package/src/swe-arena/run-supervisor.test.mts +498 -0
- package/src/swe-arena/serialized-judge.ts +414 -0
- package/src/swe-arena/types.ts +166 -0
- package/src/swe-code-improve.mts +328 -0
- package/src/swe-emit-patch.mts +104 -0
- package/src/swe-improve.mts +232 -0
- package/src/swe-jail.ts +2 -2
- package/src/swe-local-proof.mts +169 -0
- package/src/swe-repro-calibrate.mts +446 -0
- package/src/swe-stream.mts +1497 -0
- package/dist/chunk-PPYSEKFM.js.map +0 -1
- /package/dist/{chunk-5SBJCB6W.js.map → chunk-PWQVGAJB.js.map} +0 -0
|
@@ -0,0 +1,297 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Thin driver over the REAL loops pi extension. It constructs a minimal
|
|
3
|
+
* ExtensionAPI, calls the extension's default export to register the real tools
|
|
4
|
+
* (spawn_supervisor / supervisor_status / supervisor_watch / compute_watch), then
|
|
5
|
+
* invokes the REAL spawn_supervisor tool and polls the on-disk run dir until the
|
|
6
|
+
* supervisor settles. No supervisor logic is reimplemented — this only replaces
|
|
7
|
+
* pi's chat operator as the caller of the already-registered tool.
|
|
8
|
+
*
|
|
9
|
+
* usage: node --import tsx run-supervisor.mjs <extPath> <cwd> <paramsJsonPath>
|
|
10
|
+
*/
|
|
11
|
+
import { existsSync, readFileSync, readdirSync } from 'node:fs'
|
|
12
|
+
import { join } from 'node:path'
|
|
13
|
+
import { pathToFileURL } from 'node:url'
|
|
14
|
+
|
|
15
|
+
const [extPath, cwd, paramsPath] = process.argv.slice(2)
|
|
16
|
+
if (!extPath || !cwd || !paramsPath) {
|
|
17
|
+
console.error('usage: node --import tsx run-supervisor.mjs <extPath> <cwd> <paramsJsonPath>')
|
|
18
|
+
process.exit(2)
|
|
19
|
+
}
|
|
20
|
+
const params = JSON.parse(readFileSync(paramsPath, 'utf8'))
|
|
21
|
+
|
|
22
|
+
const tools = new Map()
|
|
23
|
+
const pi = {
|
|
24
|
+
on() {},
|
|
25
|
+
registerTool(t) { tools.set(t.name, t) },
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
const mod = await import(pathToFileURL(extPath).href)
|
|
29
|
+
mod.default(pi)
|
|
30
|
+
console.log(`[driver] registered tools: ${[...tools.keys()].join(', ')}`)
|
|
31
|
+
|
|
32
|
+
const ctx = { cwd }
|
|
33
|
+
const spawn = tools.get('spawn_supervisor')
|
|
34
|
+
const cancel = tools.get('supervisor_cancel')
|
|
35
|
+
if (!spawn || !cancel) {
|
|
36
|
+
console.error('[driver] extension must register spawn_supervisor and supervisor_cancel')
|
|
37
|
+
process.exit(2)
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
const positiveNumberEnv = (name, fallback) => {
|
|
41
|
+
const value = Number(process.env[name] ?? fallback)
|
|
42
|
+
if (!Number.isFinite(value) || value <= 0) throw new Error(`${name} must be a positive number`)
|
|
43
|
+
return value
|
|
44
|
+
}
|
|
45
|
+
const deadlineMs = positiveNumberEnv('DRIVER_DEADLINE_MS', 25 * 60 * 1000)
|
|
46
|
+
const pollMs = positiveNumberEnv('DRIVER_POLL_MS', 4000)
|
|
47
|
+
const cancelTimeoutMs = positiveNumberEnv('DRIVER_CANCEL_TIMEOUT_MS', 30_000)
|
|
48
|
+
const settlementTimeoutMs = positiveNumberEnv('DRIVER_SETTLEMENT_TIMEOUT_MS', cancelTimeoutMs)
|
|
49
|
+
const t0 = Date.now()
|
|
50
|
+
const supervisorRoot = join(cwd, '.loops', 'supervisor')
|
|
51
|
+
const readJson = (p) => { try { return JSON.parse(readFileSync(p, 'utf8')) } catch { return undefined } }
|
|
52
|
+
const tail = (p, n) => {
|
|
53
|
+
if (!existsSync(p)) return []
|
|
54
|
+
const lines = readFileSync(p, 'utf8').split('\n').filter(Boolean)
|
|
55
|
+
return lines.slice(-n)
|
|
56
|
+
}
|
|
57
|
+
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms))
|
|
58
|
+
const listSupervisorIds = () => {
|
|
59
|
+
try {
|
|
60
|
+
return readdirSync(supervisorRoot, { withFileTypes: true })
|
|
61
|
+
.filter((entry) => entry.isDirectory() && /^sup-\d+-[a-z0-9]+$/i.test(entry.name))
|
|
62
|
+
.map((entry) => entry.name)
|
|
63
|
+
.sort()
|
|
64
|
+
} catch {
|
|
65
|
+
return []
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
const idsBeforeSpawn = new Set(listSupervisorIds())
|
|
69
|
+
const runDirFor = (id) => join(supervisorRoot, id)
|
|
70
|
+
|
|
71
|
+
const workerSettlement = (id) => {
|
|
72
|
+
const runDir = runDirFor(id)
|
|
73
|
+
const status = readJson(join(runDir, 'state.json'))?.status ?? 'missing'
|
|
74
|
+
const journalPath = join(runDir, 'journal.jsonl')
|
|
75
|
+
const lines = tail(journalPath, Number.MAX_SAFE_INTEGER)
|
|
76
|
+
let invalidLines = 0
|
|
77
|
+
const events = lines.flatMap((line) => {
|
|
78
|
+
try { return [JSON.parse(line)] } catch { invalidLines += 1; return [] }
|
|
79
|
+
})
|
|
80
|
+
const rootSpawned = events.some((event) => event.kind === 'spawned' && event.id === id && !event.parent)
|
|
81
|
+
const spawnedEvents = events.filter((event) => event.kind === 'spawned' && event.parent)
|
|
82
|
+
let missingIds = 0
|
|
83
|
+
const workerIds = new Set()
|
|
84
|
+
for (const event of spawnedEvents) {
|
|
85
|
+
if (typeof event.id === 'string' && event.id.length > 0) workerIds.add(event.id)
|
|
86
|
+
else missingIds += 1
|
|
87
|
+
}
|
|
88
|
+
const terminalIds = new Set(events.flatMap((event) =>
|
|
89
|
+
(event.kind === 'settled' || event.kind === 'cancelled') && typeof event.id === 'string' ? [event.id] : [],
|
|
90
|
+
))
|
|
91
|
+
const unsettled = [...workerIds].filter((workerId) => !terminalIds.has(workerId))
|
|
92
|
+
return {
|
|
93
|
+
status,
|
|
94
|
+
journalPresent: existsSync(journalPath),
|
|
95
|
+
rootSpawned,
|
|
96
|
+
invalidLines,
|
|
97
|
+
workers: workerIds.size,
|
|
98
|
+
terminal: workerIds.size - unsettled.length,
|
|
99
|
+
missingIds,
|
|
100
|
+
unsettled,
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
const hasTerminalWorkerEvidence = (settlement) =>
|
|
105
|
+
settlement.journalPresent &&
|
|
106
|
+
settlement.rootSpawned &&
|
|
107
|
+
settlement.invalidLines === 0 &&
|
|
108
|
+
settlement.missingIds === 0 &&
|
|
109
|
+
settlement.unsettled.length === 0
|
|
110
|
+
|
|
111
|
+
const settlementProblem = (settlement) =>
|
|
112
|
+
`status=${settlement.status}, journal=${settlement.journalPresent ? 'present' : 'missing'}, root=${settlement.rootSpawned ? 'present' : 'missing'}, ` +
|
|
113
|
+
`workers=${settlement.workers}, terminal=${settlement.terminal}, unsettled=${settlement.unsettled.length}, ` +
|
|
114
|
+
`missingIds=${settlement.missingIds}, invalidLines=${settlement.invalidLines}`
|
|
115
|
+
|
|
116
|
+
const withTimeout = (promise, timeoutMs, message) => new Promise((resolve, reject) => {
|
|
117
|
+
const timer = setTimeout(() => reject(new Error(message)), timeoutMs)
|
|
118
|
+
promise.then(
|
|
119
|
+
(value) => { clearTimeout(timer); resolve(value) },
|
|
120
|
+
(err) => { clearTimeout(timer); reject(err) },
|
|
121
|
+
)
|
|
122
|
+
})
|
|
123
|
+
|
|
124
|
+
const cancellations = new Map()
|
|
125
|
+
const cancelAndSettle = (id, reason, deadline = Date.now() + cancelTimeoutMs) => {
|
|
126
|
+
if (cancellations.has(id)) return cancellations.get(id)
|
|
127
|
+
const cancellation = (async () => {
|
|
128
|
+
console.error(`[driver] cancelling ${id}: ${reason}`)
|
|
129
|
+
const result = await withTimeout(
|
|
130
|
+
Promise.resolve(cancel.execute(`cancel-${id}`, { id }, undefined, () => {}, ctx)),
|
|
131
|
+
Math.max(1, deadline - Date.now()),
|
|
132
|
+
`supervisor cancellation did not settle within ${cancelTimeoutMs}ms`,
|
|
133
|
+
)
|
|
134
|
+
const message = result?.content?.[0]?.text ?? ''
|
|
135
|
+
while (true) {
|
|
136
|
+
const settlement = workerSettlement(id)
|
|
137
|
+
const terminalStatus = ['completed', 'failed', 'cancelled'].includes(settlement.status)
|
|
138
|
+
if (terminalStatus && hasTerminalWorkerEvidence(settlement)) {
|
|
139
|
+
console.error(`[driver] cancellation settled: workers=${settlement.workers}, terminal=${settlement.terminal}; ${message}`)
|
|
140
|
+
return settlement
|
|
141
|
+
}
|
|
142
|
+
if (Date.now() >= deadline) {
|
|
143
|
+
throw new Error(`supervisor cancellation left ${settlementProblem(settlement)}`)
|
|
144
|
+
}
|
|
145
|
+
await sleep(Math.min(pollMs, 250, Math.max(1, deadline - Date.now())))
|
|
146
|
+
}
|
|
147
|
+
})()
|
|
148
|
+
cancellations.set(id, cancellation)
|
|
149
|
+
return cancellation
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
let parsedId
|
|
153
|
+
let spawnSettled = false
|
|
154
|
+
let receivedSignal
|
|
155
|
+
let signalExitPromise
|
|
156
|
+
const startedIds = () => {
|
|
157
|
+
const ids = listSupervisorIds().filter((id) => !idsBeforeSpawn.has(id))
|
|
158
|
+
if (parsedId && !ids.includes(parsedId)) ids.push(parsedId)
|
|
159
|
+
return ids.sort()
|
|
160
|
+
}
|
|
161
|
+
const waitForStartedIds = async (deadline) => {
|
|
162
|
+
while (true) {
|
|
163
|
+
const ids = startedIds()
|
|
164
|
+
if (ids.length > 0 || spawnSettled) return ids
|
|
165
|
+
if (Date.now() >= deadline) {
|
|
166
|
+
throw new Error(`spawn did not expose a supervisor id within ${cancelTimeoutMs}ms`)
|
|
167
|
+
}
|
|
168
|
+
await sleep(Math.min(pollMs, 50, Math.max(1, deadline - Date.now())))
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
const cancelStartedRuns = async (reason, deadline) => {
|
|
172
|
+
const ids = await waitForStartedIds(deadline)
|
|
173
|
+
await Promise.all(ids.map((id) => cancelAndSettle(id, reason, deadline)))
|
|
174
|
+
return ids
|
|
175
|
+
}
|
|
176
|
+
const finishSignalExit = () => {
|
|
177
|
+
if (!receivedSignal) return Promise.resolve()
|
|
178
|
+
signalExitPromise ??= (async () => {
|
|
179
|
+
const { signal, code } = receivedSignal
|
|
180
|
+
try {
|
|
181
|
+
await cancelStartedRuns(`driver received ${signal}`, Date.now() + cancelTimeoutMs)
|
|
182
|
+
process.exit(code)
|
|
183
|
+
} catch (err) {
|
|
184
|
+
console.error(`[driver] cancellation failed: ${err instanceof Error ? err.message : String(err)}`)
|
|
185
|
+
process.exit(4)
|
|
186
|
+
}
|
|
187
|
+
})()
|
|
188
|
+
return signalExitPromise
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
for (const [signal, code] of [['SIGINT', 130], ['SIGTERM', 143]]) {
|
|
192
|
+
process.once(signal, () => {
|
|
193
|
+
if (receivedSignal) return
|
|
194
|
+
receivedSignal = { signal, code }
|
|
195
|
+
void finishSignalExit()
|
|
196
|
+
})
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
let res
|
|
200
|
+
let spawnError
|
|
201
|
+
try {
|
|
202
|
+
res = await spawn.execute('call-1', params, undefined, () => {}, ctx)
|
|
203
|
+
const responseText = res?.content?.[0]?.text ?? ''
|
|
204
|
+
parsedId = responseText.match(/supervisor (sup-\d+-[a-z0-9]+)/i)?.[1]
|
|
205
|
+
} catch (err) {
|
|
206
|
+
spawnError = err
|
|
207
|
+
} finally {
|
|
208
|
+
spawnSettled = true
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
if (receivedSignal) await finishSignalExit()
|
|
212
|
+
|
|
213
|
+
const text = res?.content?.[0]?.text ?? ''
|
|
214
|
+
if (res) console.log(`[driver] spawn_supervisor returned: ${text}`)
|
|
215
|
+
if (spawnError || !parsedId) {
|
|
216
|
+
const ids = startedIds()
|
|
217
|
+
if (ids.length > 0) {
|
|
218
|
+
console.error(`[driver] spawn did not return a usable id; cancelling recovered run(s): ${ids.join(', ')}`)
|
|
219
|
+
try {
|
|
220
|
+
const deadline = Date.now() + cancelTimeoutMs
|
|
221
|
+
await Promise.all(ids.map((id) => cancelAndSettle(id, 'spawn did not return a usable supervisor id', deadline)))
|
|
222
|
+
} catch (err) {
|
|
223
|
+
console.error(`[driver] recovered-run cancellation failed: ${err instanceof Error ? err.message : String(err)}`)
|
|
224
|
+
process.exit(4)
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
if (spawnError) {
|
|
228
|
+
console.error(`[driver] spawn_supervisor failed: ${spawnError instanceof Error ? spawnError.message : String(spawnError)}`)
|
|
229
|
+
} else {
|
|
230
|
+
console.error('[driver] could not parse supervisor id')
|
|
231
|
+
}
|
|
232
|
+
process.exit(1)
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
const id = parsedId
|
|
236
|
+
const runDir = runDirFor(id)
|
|
237
|
+
const waitForCompletedSettlement = async () => {
|
|
238
|
+
const deadline = Date.now() + settlementTimeoutMs
|
|
239
|
+
while (true) {
|
|
240
|
+
const settlement = workerSettlement(id)
|
|
241
|
+
if (settlement.status !== 'completed' || hasTerminalWorkerEvidence(settlement)) return settlement
|
|
242
|
+
if (Date.now() >= deadline) {
|
|
243
|
+
throw new Error(`completed supervisor lacks terminal worker evidence after ${settlementTimeoutMs}ms: ${settlementProblem(settlement)}`)
|
|
244
|
+
}
|
|
245
|
+
await sleep(Math.min(pollMs, 250, Math.max(1, deadline - Date.now())))
|
|
246
|
+
}
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
let last = ''
|
|
250
|
+
while (true) {
|
|
251
|
+
const st = readJson(join(runDir, 'state.json'))
|
|
252
|
+
const status = st?.status ?? 'pending'
|
|
253
|
+
const progress = st?.progress ?? ''
|
|
254
|
+
const journal = tail(join(runDir, 'journal.jsonl'), 40)
|
|
255
|
+
const spawned = journal.filter((l) => l.includes('"kind":"spawned"')).length
|
|
256
|
+
const settled = journal.filter((l) => l.includes('"kind":"settled"')).length
|
|
257
|
+
const stamp = `${((Date.now() - t0) / 1000).toFixed(0)}s status=${status} progress="${progress}" journal(spawned=${spawned},settled=${settled})`
|
|
258
|
+
if (stamp !== last) { console.log(`[watch] ${stamp}`); last = stamp }
|
|
259
|
+
if (st && ['completed', 'failed', 'cancelled'].includes(st.status)) {
|
|
260
|
+
const terminalStatus = st.status
|
|
261
|
+
let settlement = workerSettlement(id)
|
|
262
|
+
if (st.status === 'completed') {
|
|
263
|
+
try {
|
|
264
|
+
settlement = await waitForCompletedSettlement()
|
|
265
|
+
} catch (err) {
|
|
266
|
+
console.error(`[driver] refusing completed supervisor: ${err instanceof Error ? err.message : String(err)}`)
|
|
267
|
+
process.exit(4)
|
|
268
|
+
}
|
|
269
|
+
if (settlement.status !== 'completed') continue
|
|
270
|
+
} else if (!hasTerminalWorkerEvidence(settlement)) {
|
|
271
|
+
try {
|
|
272
|
+
settlement = await cancelAndSettle(
|
|
273
|
+
id,
|
|
274
|
+
`supervisor entered ${terminalStatus} before its workers settled`,
|
|
275
|
+
)
|
|
276
|
+
} catch (err) {
|
|
277
|
+
console.error(`[driver] terminal supervisor cleanup failed: ${err instanceof Error ? err.message : String(err)}`)
|
|
278
|
+
process.exit(4)
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
console.log(`\n[done] id=${id} status=${terminalStatus} verdict=${st.verdict ?? ''} result=${JSON.stringify(st.result ?? {})} error=${st.error ?? ''}`)
|
|
282
|
+
console.log(`[done] worker settlement: workers=${settlement.workers}, terminal=${settlement.terminal}`)
|
|
283
|
+
console.log(`[done] runDir=${runDir}`)
|
|
284
|
+
process.exit(terminalStatus === 'completed' ? 0 : 1)
|
|
285
|
+
}
|
|
286
|
+
if (Date.now() - t0 > deadlineMs) {
|
|
287
|
+
console.error(`[driver] deadline exceeded (${deadlineMs}ms) — supervisor still ${status}. runDir=${runDir}`)
|
|
288
|
+
try {
|
|
289
|
+
await cancelAndSettle(id, 'driver deadline exceeded')
|
|
290
|
+
} catch (err) {
|
|
291
|
+
console.error(`[driver] cancellation failed: ${err instanceof Error ? err.message : String(err)}`)
|
|
292
|
+
process.exit(4)
|
|
293
|
+
}
|
|
294
|
+
process.exit(3)
|
|
295
|
+
}
|
|
296
|
+
await sleep(pollMs)
|
|
297
|
+
}
|