-
Notifications
You must be signed in to change notification settings - Fork 601
Closed
Labels
sdk-pythonPython logging APIPython logging API💣 crashcrash, deadlock/freeze, do-no-startcrash, deadlock/freeze, do-no-start🪳 bugSomething isn't workingSomething isn't working
Description
Both of these cases lead to:
terminate called without an active exception
Aborted (core dumped)
import rerun as rr
for _ in range(3):
rec = rr.new_recording(application_id="test")
mem = rec.memory_recording()
rr.log("test", rr.Points3D([1, 2, 3]), recording=rec.inner)import rerun as rr
rec = rr.new_recording(application_id="test")
rr.log("test", rr.Points3D([1, 2, 3]), recording=rec.inner)However, a single memory recording appears to work fine without aborting:
rec = rr.new_recording(application_id="test")
rec.memory_recording()
rr.log("test", rr.Points3D([1, 2, 3]), recording=rec.inner)Metadata
Metadata
Assignees
Labels
sdk-pythonPython logging APIPython logging API💣 crashcrash, deadlock/freeze, do-no-startcrash, deadlock/freeze, do-no-start🪳 bugSomething isn't workingSomething isn't working