fix: correct AutonomousConfig.IntervalMinutes minimum interval comment
The heartbeat service enforces a 5-minute floor, not 1-minute. https://claude.ai/code/session_0118WWK5KLRM7ZBUoC8EMgKS
This commit is contained in:
parent
b7b671f1c1
commit
b66648d483
1 changed files with 2 additions and 1 deletions
|
|
@ -556,7 +556,8 @@ type AutonomousConfig struct {
|
|||
Enabled bool `json:"enabled" env:"PICONOMOUS_AUTONOMOUS_ENABLED"`
|
||||
|
||||
// IntervalMinutes controls how often (in minutes) the autonomous heartbeat fires.
|
||||
// Defaults to 5 minutes when autonomous mode is enabled. Minimum is 1 minute.
|
||||
// Defaults to 5 minutes when autonomous mode is enabled. Minimum is 5 minutes
|
||||
// (enforced by the heartbeat service).
|
||||
IntervalMinutes int `json:"interval_minutes" env:"PICONOMOUS_AUTONOMOUS_INTERVAL_MINUTES"`
|
||||
|
||||
// AllowSelfSchedule lets the agent create cron jobs targeting its own internal
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue