docs(config): drop stale CDC-JSONL mention in resolveDataDir

CDC is trigger-driven in the SQLite DB now; there is no JSONL log.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
prateek 2026-05-31 07:18:22 +05:30 committed by itrytoohard
parent cdf55ebef5
commit 0a69b8429e
1 changed files with 3 additions and 3 deletions

View File

@ -149,9 +149,9 @@ func resolveRunFilePath() (string, error) {
return filepath.Join(dir, "agent-orchestrator", "running.json"), nil
}
// resolveDataDir picks where durable state (SQLite DB, CDC JSONL) lives. An
// explicit AO_DATA_DIR wins; otherwise it sits under the per-user state
// directory alongside running.json.
// resolveDataDir picks where durable state (the SQLite DB) lives. An explicit
// AO_DATA_DIR wins; otherwise it sits under the per-user state directory
// alongside running.json.
func resolveDataDir() (string, error) {
if p, ok := os.LookupEnv("AO_DATA_DIR"); ok && p != "" {
return p, nil