@ricsam/r5d-worker 0.0.180 → 0.0.181
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/dist/cjs/package.json
CHANGED
|
@@ -20605,7 +20605,7 @@ function resolveEntrypointPath(entrypoint) {
|
|
|
20605
20605
|
}
|
|
20606
20606
|
}
|
|
20607
20607
|
function getR5dctlVersion() {
|
|
20608
|
-
if (true) return "0.0.
|
|
20608
|
+
if (true) return "0.0.181";
|
|
20609
20609
|
const entrypoint = process.argv[1] ? resolveEntrypointPath(process.argv[1]) : null;
|
|
20610
20610
|
let current = entrypoint ? import_node_path2.default.dirname(entrypoint) : process.cwd();
|
|
20611
20611
|
for (let index = 0; index < 12; index += 1) {
|
package/dist/mjs/main.mjs
CHANGED
|
@@ -7,7 +7,7 @@ import { startManagerRpc } from "./runtime/releases/rpc-main.mjs";
|
|
|
7
7
|
import { ManagerRpcConfig } from "./runtime/releases/rpc-protocol.mjs";
|
|
8
8
|
const args = process.argv.slice(2);
|
|
9
9
|
if (args.includes("--version")) {
|
|
10
|
-
console.log(`r5d-worker ${true ? "0.0.
|
|
10
|
+
console.log(`r5d-worker ${true ? "0.0.181" : "development"}`);
|
|
11
11
|
} else if (!args.length || args.includes("--help")) {
|
|
12
12
|
console.log(
|
|
13
13
|
"Usage: r5d-worker start --label <label> [--root <dir>] [--base-url <url>] [--token <worker-token>] [--initial-sync merge|reset]\n r5d-worker executor /absolute/private/config.json\n r5d-worker manager /absolute/private/config.json\n\nRun independently supervised durable runtime services. Provision configuration with r5dinfra."
|
|
@@ -15,7 +15,7 @@ if (args.includes("--version")) {
|
|
|
15
15
|
} else if (args[0] === "start") {
|
|
16
16
|
const runtime = await startPersonalWorker(
|
|
17
17
|
parsePersonalWorkerOptions(args.slice(1)),
|
|
18
|
-
true ? "0.0.
|
|
18
|
+
true ? "0.0.181" : "development"
|
|
19
19
|
);
|
|
20
20
|
console.log(`Worker connected: ${runtime.resourceId}`);
|
|
21
21
|
let closing = false;
|
|
@@ -24,7 +24,12 @@ if (args.includes("--version")) {
|
|
|
24
24
|
closing = true;
|
|
25
25
|
void runtime.close().then(
|
|
26
26
|
() => process.exit(0),
|
|
27
|
-
() =>
|
|
27
|
+
(error) => {
|
|
28
|
+
const code = error?.code;
|
|
29
|
+
process.stderr.write(`[r5d-worker] stop did not complete cleanly: ${typeof code === "string" ? code : error instanceof Error ? error.message : String(error)}
|
|
30
|
+
`);
|
|
31
|
+
process.exit(1);
|
|
32
|
+
}
|
|
28
33
|
);
|
|
29
34
|
};
|
|
30
35
|
process.once("SIGTERM", close);
|
package/dist/mjs/package.json
CHANGED
|
@@ -327,7 +327,10 @@ class HostExecutor {
|
|
|
327
327
|
if (pty) {
|
|
328
328
|
pty.onData((data) => this.output(run2, "stdout", Buffer.from(data)));
|
|
329
329
|
pty.onExit(({ exitCode, signal }) => {
|
|
330
|
-
if (exitCode === -1)
|
|
330
|
+
if (exitCode === -1) {
|
|
331
|
+
receipt2.reason = "pty_helper_lost";
|
|
332
|
+
run2.cancelled = true;
|
|
333
|
+
}
|
|
331
334
|
onExit(exitCode, signal ? String(signal) : null);
|
|
332
335
|
});
|
|
333
336
|
} else {
|
|
@@ -467,7 +470,7 @@ class HostExecutor {
|
|
|
467
470
|
if (run.finishing) return run.finishing;
|
|
468
471
|
run.finishing = (async () => {
|
|
469
472
|
clearTimeout(run.timer);
|
|
470
|
-
let cleanupFailed =
|
|
473
|
+
let cleanupFailed = false;
|
|
471
474
|
try {
|
|
472
475
|
if (run.process.pid) await terminateProcessTree(run.process, { graceMs: 200, forceKillWaitMs: 1e3 });
|
|
473
476
|
await Promise.race([
|
package/dist/mjs/runtime/pty.mjs
CHANGED
|
@@ -10,6 +10,10 @@ function preflightNativePty() {
|
|
|
10
10
|
}
|
|
11
11
|
class PtySession {
|
|
12
12
|
pid = 0;
|
|
13
|
+
/** The helper process that owns the terminal, for tests that end it the way a stop signal would. */
|
|
14
|
+
get helperPid() {
|
|
15
|
+
return this.child.pid ?? 0;
|
|
16
|
+
}
|
|
13
17
|
sequence = 0;
|
|
14
18
|
pending = /* @__PURE__ */ new Map();
|
|
15
19
|
child;
|
|
@@ -2,6 +2,8 @@ export declare function preflightNativePty(): void;
|
|
|
2
2
|
/** Node native FD keeper is a daemon child; replacing adapters cannot signal it. */
|
|
3
3
|
export declare class PtySession {
|
|
4
4
|
pid: number;
|
|
5
|
+
/** The helper process that owns the terminal, for tests that end it the way a stop signal would. */
|
|
6
|
+
get helperPid(): number;
|
|
5
7
|
private sequence;
|
|
6
8
|
private readonly pending;
|
|
7
9
|
private readonly child;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ricsam/r5d-worker",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.181",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/mjs/main.mjs",
|
|
6
6
|
"module": "./dist/mjs/main.mjs",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"r5d-worker": "dist/mjs/main.mjs"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@ricsam/r5d-api": "^0.0.
|
|
24
|
+
"@ricsam/r5d-api": "^0.0.181",
|
|
25
25
|
"node-pty": "1.1.0",
|
|
26
26
|
"zod": "^4.1.13",
|
|
27
27
|
"picomatch": "^4.0.3"
|