#Openclaw slow v2026.4.25
1 messages · Page 1 of 1 (latest)
Yep — that timing means not the model/provider. The delay is happening before the embedded agent run reaches session.started.
Most likely causes:
- Queue/debounce config — especially if something is near
90000ms. - Main lane saturated — inbound turns wait behind other active main turns/heartbeats.
- Gateway restart/runtime-deps drain — also has 90s-ish paths in some cases.
Can you run:
openclaw --version
openclaw config get messages.queue
openclaw config get messages.inbound
openclaw config get agents.defaults.maxConcurrent
openclaw config get cron.maxConcurrentRuns
If you see debounceMs: 90000 or debounceMsByChannel.discord: 90000, that’s the smoking gun.
For the queue case, during/after a repro:
openclaw logs --limit 800 --local-time --plain | grep -E 'lane wait exceeded|queueDepth|message queued|draining|runtime deps|session.started'
openclaw gateway stability --json
If logs show lane wait exceeded: lane=main waitedMs≈90000, raise/check agents.defaults.maxConcurrent — default should be 4, so if it’s 1, try:
openclaw config set agents.defaults.maxConcurrent 4
openclaw gateway restart
Docs: https://docs.openclaw.ai/concepts/queue and https://docs.openclaw.ai/gateway/diagnostics
i think this issue is with the new update
Yeah, I’m leaning that way too. There are already fresh 2026.4.25 regression issues open, including one around deferred gateway restarts leaving inbound sessions stuck, and another around gateway startup blocking on pricing fetch timeouts. Your timing — 90s before session.started, then 2.4s model time — points at Gateway/queue/reload plumbing, not the model. (github.com)
Can you grab this from the affected machine?
openclaw --version
openclaw logs --limit 1500 --local-time --plain | grep -E 'reload|deferred|lane wait exceeded|stuck session|pricing|runtime deps|session.started'
openclaw gateway stability --json
If you see restart still deferred, stuck session, or lane wait exceeded, that’s strong evidence. The queue path is relevant because inbound replies are intentionally queued by session + global main lane before the agent starts. (docs.openclaw.ai)
If it’s reproducible on 2026.4.25, please file/add to a GitHub issue with those log lines and exact version. Happy to help interpret the output here.
which the fastest and most stable openclaw previous version
Assuming you’re on 2026.4.25, I’d roll back to 2026.4.23 right now.
Why: 2026.4.24 also had some suspicious regression reports, so 2026.4.23 is the safer “last known calmer” target than just one step back.
Try:
openclaw --version
curl -fsSL https://openclaw.ai/install.sh | bash -s -- --install-method npm --version 2026.4.23
openclaw doctor
openclaw gateway restart
openclaw --version
If you’re running from source instead: