Looks like a fairly standard shutdown race condition:
fast.py
import rerun as rr
rr.init("fast", spawn=True)
rr.log_rect("rect", [16, 16, 64, 64], label="Rect1", color=(255, 0, 0))
No data shows up.
slow.py:
import rerun as rr
rr.init("fast", spawn=True)
rr.log_rect("rect", [16, 16, 64, 64], label="Rect1", color=(255, 0, 0))
import time
time.sleep(0.1)
Data shows up.
Looks like a fairly standard shutdown race condition:
fast.py
No data shows up.
slow.py:
Data shows up.