@atolis-hq/wake 0.2.71 → 0.2.73
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.
|
@@ -152,6 +152,9 @@ export function classifyCodexCliFailure(input) {
|
|
|
152
152
|
}
|
|
153
153
|
const structuredMessage = extractCodexErrorMessage(input.stdout);
|
|
154
154
|
const text = (structuredMessage ?? `${input.stderr}\n${input.stdout}`).toLowerCase();
|
|
155
|
+
if (text.includes('missing bearer or basic authentication')) {
|
|
156
|
+
return 'infra';
|
|
157
|
+
}
|
|
155
158
|
if (text.includes('usage limit') ||
|
|
156
159
|
text.includes('rate limit') ||
|
|
157
160
|
text.includes('quota') ||
|
|
@@ -159,7 +162,9 @@ export function classifyCodexCliFailure(input) {
|
|
|
159
162
|
text.includes('credit') ||
|
|
160
163
|
text.includes('too many requests') ||
|
|
161
164
|
text.includes('unauthorized') ||
|
|
162
|
-
text.includes('authentication')
|
|
165
|
+
text.includes('authentication') ||
|
|
166
|
+
text.includes('not logged in') ||
|
|
167
|
+
text.includes('login required')) {
|
|
163
168
|
return 'quota';
|
|
164
169
|
}
|
|
165
170
|
return 'infra';
|
|
@@ -4,44 +4,20 @@ import { buildResourceUri } from '../../domain/resource-uri.js';
|
|
|
4
4
|
import { isTerminalStage } from '../../domain/stages.js';
|
|
5
5
|
import { isWorkItemDeleted, isWorkItemFrozen } from '../../domain/work-item-lifecycle.js';
|
|
6
6
|
import { workflowForProjection, workflowNameForProjection } from '../../domain/workflows.js';
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
process.kill(pid, 0);
|
|
22
|
-
return true;
|
|
23
|
-
}
|
|
24
|
-
catch (error) {
|
|
25
|
-
return error.code !== 'ESRCH';
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
async function readLockInfo(lockFile, now) {
|
|
29
|
-
try {
|
|
30
|
-
const metadata = parseLockMetadata(await readFile(lockFile, 'utf8'));
|
|
31
|
-
if (metadata === null) {
|
|
32
|
-
return { present: true };
|
|
33
|
-
}
|
|
34
|
-
return {
|
|
35
|
-
present: true,
|
|
36
|
-
pid: metadata.pid,
|
|
37
|
-
acquiredAt: metadata.acquiredAt,
|
|
38
|
-
ageMs: now.getTime() - Date.parse(metadata.acquiredAt),
|
|
39
|
-
pidAlive: isPidAlive(metadata.pid),
|
|
40
|
-
};
|
|
41
|
-
}
|
|
42
|
-
catch {
|
|
43
|
-
return { present: false };
|
|
44
|
-
}
|
|
7
|
+
import { readFileLockStatus } from '../../lib/lock.js';
|
|
8
|
+
async function readLockInfo(lockFile, now, processInspector) {
|
|
9
|
+
const status = await readFileLockStatus(lockFile, {
|
|
10
|
+
now,
|
|
11
|
+
...(processInspector === undefined ? {} : { processInspector }),
|
|
12
|
+
});
|
|
13
|
+
return {
|
|
14
|
+
present: status.present,
|
|
15
|
+
...(status.metadata === undefined ? {} : { pid: status.metadata.pid }),
|
|
16
|
+
...(status.metadata === undefined ? {} : { acquiredAt: status.metadata.acquiredAt }),
|
|
17
|
+
...(status.ageMs === undefined ? {} : { ageMs: status.ageMs }),
|
|
18
|
+
pidAlive: status.active,
|
|
19
|
+
...(status.staleReason === undefined ? {} : { staleReason: status.staleReason }),
|
|
20
|
+
};
|
|
45
21
|
}
|
|
46
22
|
/**
|
|
47
23
|
* Reproduces the sentinel-driven part of policy eligibility for display purposes only.
|
|
@@ -188,8 +164,8 @@ export async function buildStatus(input) {
|
|
|
188
164
|
buildBoard(input),
|
|
189
165
|
]);
|
|
190
166
|
const [tickLock, runnerLock] = await Promise.all([
|
|
191
|
-
readLockInfo(input.stateStore.paths.tickLockFile, input.now),
|
|
192
|
-
readLockInfo(input.stateStore.paths.runnerLockFile, input.now),
|
|
167
|
+
readLockInfo(input.stateStore.paths.tickLockFile, input.now, input.processInspector),
|
|
168
|
+
readLockInfo(input.stateStore.paths.runnerLockFile, input.now, input.processInspector),
|
|
193
169
|
]);
|
|
194
170
|
const tickLockLive = tickLock.present && tickLock.pidAlive === true;
|
|
195
171
|
const runnerLockLive = runnerLock.present && runnerLock.pidAlive === true;
|
package/dist/src/version.js
CHANGED