fix(cron): prevent every schedule from firing in infinite loop#80
Merged
steipete merged 1 commit intoopenclaw:mainfrom Jan 2, 2026
Merged
Conversation
When anchorMs is not provided (always in production), the schedule computed nextRunAtMs as nowMs, causing jobs to fire immediately and repeatedly instead of at the configured interval. - Change nowMs <= anchor to nowMs < anchor to prevent early return - Add Math.max(1, ...) to ensure steps is always at least 1 - Add test for anchorMs not provided case
Contributor
|
Thank you! Reviewing |
dgarson
referenced
this pull request
in dgarson/clawdbot
Feb 4, 2026
…ndoff feat: agent handoff, thinking mode fixes and subagent registry
Milofax
added a commit
to Milofax/openclaw
that referenced
this pull request
Feb 6, 2026
…claw#80) Add --disable-blink-features=AutomationControlled to Chrome launch args. This prevents reCAPTCHA v3 from detecting the headless browser via the navigator.webdriver property, fixing login on Teachable-based sites. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Milofax
added a commit
to Milofax/openclaw
that referenced
this pull request
Feb 6, 2026
…claw#80) Add --disable-blink-features=AutomationControlled to Chrome launch args. This prevents reCAPTCHA v3 from detecting the headless browser via the navigator.webdriver property, fixing login on Teachable-based sites. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Milofax
added a commit
to Milofax/openclaw
that referenced
this pull request
Feb 6, 2026
Runtime.enable causes Chrome to emit Runtime.consoleAPICalled events, which Cloudflare Turnstile and reCAPTCHA v3 detect as automation. Runtime.evaluate works without it. Combined with rebrowser-patches on playwright-core, this eliminates the main CDP detection vectors. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Milofax
added a commit
to Milofax/openclaw
that referenced
this pull request
Feb 6, 2026
…on (openclaw#80)" This reverts commit f75d269.
Takhoffman
pushed a commit
to Milofax/openclaw
that referenced
this pull request
Feb 13, 2026
…claw#80) Add --disable-blink-features=AutomationControlled to Chrome launch args. This prevents reCAPTCHA v3 from detecting the headless browser via the navigator.webdriver property, fixing login on Teachable-based sites. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
PrivacySmurf
pushed a commit
to PrivacySmurf/openclaw
that referenced
this pull request
Feb 18, 2026
The new sanitizeForPromptLiteral function (OC-19 hardening) assumes its input is always a string, but callers like buildAgentSystemPrompt pass params.workspaceDir which can be undefined at runtime (heartbeat runs, isolated cron sessions, sub-agent spawns). This caused TypeError: Cannot read properties of undefined (reading 'replace') on every heartbeat tick and all isolated agentTurn sessions since the Issue openclaw#80 merge. Fix: accept undefined|null, return empty string for falsy values.
dgarson
referenced
this pull request
in dgarson/clawdbot
Feb 22, 2026
songliu0403-rgb
pushed a commit
to songliu0403-rgb/openclaw
that referenced
this pull request
Feb 26, 2026
This was referenced Mar 5, 2026
zooqueen
pushed a commit
to hanzoai/bot
that referenced
this pull request
Mar 6, 2026
…e-infinite-loop fix(cron): prevent every schedule from firing in infinite loop
7 tasks
Piboonsak
added a commit
to Piboonsak/openclaw_github
that referenced
this pull request
Mar 8, 2026
…rides (openclaw#80) Sprint 1.5 Cost Optimization: - Default primary: minimax/minimax-m2.5 (~50-66x cheaper than Opus) - Analyst role: keeps anthropic/claude-opus-4-6 as primary - Added per-role model configs: main, analyst, gold-checker, scheduler, worker - Updated model aliases and fallback chains Ported from Piboonsak/Openclaw PR openclaw#80
heatherstew44-maker
pushed a commit
to heatherstew44-maker/openclaw
that referenced
this pull request
Mar 8, 2026
tweak default to 0.15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When anchorMs is not provided (always in production), the schedule computed nextRunAtMs as nowMs, causing jobs to fire immediately and repeatedly instead of at the configured interval.