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:
parent
cdf55ebef5
commit
0a69b8429e
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue