fix: align node host hints + deflake block streaming test (#1461) (thanks @ameno-)

This commit is contained in:
Peter Steinberger 2026-01-22 22:01:58 +00:00
parent fd27d40b85
commit bc56aac3bd
5 changed files with 7 additions and 5 deletions

View File

@ -2,11 +2,12 @@
Docs: https://docs.clawd.bot Docs: https://docs.clawd.bot
## 2026.1.22 ## 2026.1.22 (Unreleased)
### Fixes ### Fixes
- BlueBubbles: stop typing indicator on idle/no-reply. (#1439) Thanks @Nicell. - BlueBubbles: stop typing indicator on idle/no-reply. (#1439) Thanks @Nicell.
- Auto-reply: only report a model switch when session state is available. (#1465) Thanks @robbyczgw-cla. - Auto-reply: only report a model switch when session state is available. (#1465) Thanks @robbyczgw-cla.
- Node: launch node host service with `node run` (not `node start`) and align node host hints/docs. (#1461) Thanks @ameno-.
## 2026.1.21-2 ## 2026.1.21-2

View File

@ -59,7 +59,6 @@ Manage the service:
```bash ```bash
clawdbot node status clawdbot node status
clawdbot node run
clawdbot node stop clawdbot node stop
clawdbot node restart clawdbot node restart
clawdbot node uninstall clawdbot node uninstall

View File

@ -57,9 +57,11 @@ clawdbot node run --host <gateway-host> --port 18789 --display-name "Build Node"
```bash ```bash
clawdbot node install --host <gateway-host> --port 18789 --display-name "Build Node" clawdbot node install --host <gateway-host> --port 18789 --display-name "Build Node"
clawdbot node start clawdbot node status
``` ```
Install starts the service. Use `clawdbot node restart` if you need to re-launch it.
### Pair + name ### Pair + name
On the gateway host: On the gateway host:

View File

@ -42,7 +42,7 @@ describe("block streaming", () => {
}); });
async function waitForCalls(fn: () => number, calls: number) { async function waitForCalls(fn: () => number, calls: number) {
const deadline = Date.now() + 1500; const deadline = Date.now() + 5000;
while (fn() < calls) { while (fn() < calls) {
if (Date.now() > deadline) { if (Date.now() > deadline) {
throw new Error(`Expected ${calls} call(s), got ${fn()}`); throw new Error(`Expected ${calls} call(s), got ${fn()}`);

View File

@ -47,7 +47,7 @@ type NodeDaemonStatusOptions = {
}; };
function renderNodeServiceStartHints(): string[] { function renderNodeServiceStartHints(): string[] {
const base = [formatCliCommand("clawdbot node install"), formatCliCommand("clawdbot node start")]; const base = [formatCliCommand("clawdbot node install"), formatCliCommand("clawdbot node run")];
switch (process.platform) { switch (process.platform) {
case "darwin": case "darwin":
return [ return [