Skip to content

Commit 3155b8f

Browse files
committed
Print all epoch IDs to verify epoch ordering
Need to check if the epoch sorting puts t00002 first (meaning there's no t00001) or if we're reading from the wrong epoch. https://claude.ai/code/session_01A7rAxYf5pSvs19iVJe3ncL
1 parent 6ae8f47 commit 3155b8f

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tests/test_cloud_read_ingested.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,8 @@ def test_carbonfiber_probe_timeseries(self, session):
8282
# Diagnostic: check epoch table
8383
et, _ = probe.epochtable()
8484
print(f" Probe epochtable has {len(et)} entries")
85+
for i, e in enumerate(et):
86+
print(f" epoch[{i}]: id={e.get('epoch_id')}")
8587
if et:
8688
e = et[0]
8789
print(f" epoch_id: {e.get('epoch_id')}")

0 commit comments

Comments
 (0)