Private
Public Access
0
0

conductor(plan): Update RAG sync fix track state - sync works, retrieval assertion is separate

This commit is contained in:
2026-06-10 13:29:18 -04:00
parent dc90c54161
commit 2ad0d6a3f0
@@ -15,24 +15,26 @@ last_updated = "2026-06-10"
# This track blocks nothing. # This track blocks nothing.
[phases] [phases]
phase_1 = { status = "in_progress", checkpointsha = "", name = "Diagnose why _do_rag_sync doesn't set status, apply fix, verify in batch" } phase_1 = { status = "in_progress", checkpointsha = "dc90c541", name = "Diagnose why _do_rag_sync doesn't set status, apply fix, verify in batch" }
[tasks] [tasks]
t1_1 = { status = "in_progress", commit_sha = "", description = "Diagnose: why does rag_status stay at 'idle' after setters call _sync_rag_engine?" } t1_1 = { status = "completed", commit_sha = "dc90c541", description = "Diagnosed: @pytest.mark.clean_baseline calls reset_session which set rag_config=None; rag_* setters check 'if self.rag_config:' so became no-ops" }
t1_2 = { status = "pending", commit_sha = "", description = "Apply fix in src/rag_engine.py or src/app_controller.py" } t1_2 = { status = "completed", commit_sha = "dc90c541", description = "Applied fix: _handle_reset_session now sets rag_config = models.RAGConfig() (not None)" }
t1_3 = { status = "pending", commit_sha = "", description = "Verify test_rag_phase4_final_verify.py::test_phase4_final_verify passes in isolation" } t1_3 = { status = "completed", commit_sha = "dc90c541", description = "Verified test_rag_phase4_final_verify.py::test_phase4_final_verify passes in isolation (10.68s, was 57.39s)" }
t1_4 = { status = "pending", commit_sha = "", description = "Verify test_rag_phase4_final_verify.py::test_phase4_final_verify passes in tier-3-live_gui full batch" } t1_4 = { status = "in_progress", commit_sha = "", description = "Verify in tier-3-live_gui full batch (RAG test still halts on a DIFFERENT pre-existing chromadb path error)" }
t1_5 = { status = "pending", commit_sha = "", description = "Run regression: test_extended_sims.py 4 sim tests + other RAG tests" } t1_5 = { status = "completed", commit_sha = "dc90c541", description = "Run regression: 4 sim tests in test_extended_sims.py + 5 RAG tests" }
t1_6 = { status = "pending", commit_sha = "", description = "Checkpoint commit" } t1_6 = { status = "pending", commit_sha = "", description = "Final checkpoint commit" }
[verification] [verification]
diagnosis_complete = false diagnosis_complete = true
fix_applied = false fix_applied = true
isolated_test_passes = false isolated_test_passes = true
batch_test_passes = false batch_test_passes = "PARTIAL (sync works; chromadb init is a different pre-existing failure, OUT OF SCOPE per plan)"
regression_clean = false regression_clean = true
[baseline_capture] [baseline_capture]
# Captured from the 2026-06-10 isolation run # Captured from the 2026-06-10 isolation runs
isolated_status = "FAIL: tests/test_rag_phase4_final_verify.py::test_phase4_final_verify - AssertionError: RAG sync failed. Status: idle" isolated_status_pre_fix = "FAIL: tests/test_rag_phase4_final_verify.py::test_phase4_final_verify - AssertionError: RAG sync failed. Status: idle (57.39s)"
batch_status = "FAIL: tier-3-live_gui halted at this test (after test_extended_sims.py::test_context_sim_live PASSED 87.10s and test_tools_sim_live PASSED 58.50s)" isolated_status_post_fix = "PASS: 1 passed in 10.68s (was 57.39s)"
batch_status_pre_fix = "FAIL: tier-3-live_gui halted at this test (Status: idle)"
batch_status_post_fix = "FAIL: tier-3-live_gui halts at this test but with DIFFERENT error: 'error: chromadb path...' (chroma init failure, pre-existing, unrelated to sync logic)"