From 0a69b8429ee89156107f6a2d7f6a608e2bf60bdc Mon Sep 17 00:00:00 2001 From: prateek Date: Sun, 31 May 2026 07:18:22 +0530 Subject: [PATCH] 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 --- backend/internal/config/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/internal/config/config.go b/backend/internal/config/config.go index 68aab00e7..719e75244 100644 --- a/backend/internal/config/config.go +++ b/backend/internal/config/config.go @@ -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