Bugfix record indefinitely
Building, testing and releasing LASP if it has a tag / Release-Ubuntu (push) Has been skipped Details
Building, testing and releasing LASP if it has a tag / Build-Test-Ubuntu (push) Failing after 1m44s Details

This commit is contained in:
Casper Jansen 2024-02-27 11:02:45 +01:00
parent 878da3369b
commit 3b2f2f7c41
1 changed files with 2 additions and 2 deletions

View File

@ -208,7 +208,7 @@ class Recording:
recstatus = RecordStatus(curT=self.recordedTime, done=False)
if self.recordedTime >= self._requiredRecordingLength:
if self._requiredRecordingLength is not None and self.recordedTime >= self._requiredRecordingLength:
self._recState = RecordingState.AllDataStored
self._stop <<= True
recstatus.done = True
@ -287,7 +287,7 @@ class Recording:
with self._rec_mutex:
if self._recState == RecordingState.Finished:
raise RuntimeError('Recording has already finished')
self._h5file.flush()
# Remove indata handler, which also should remove callback function
# from StreamMgr. This, however does not have to happen