Skip to content

Commit 0778dd0

Browse files
authored
Merge pull request #441 from int-brain-lab/dlc_outputs_present_fix
Fix returning 27 outputs
2 parents 41f1df3 + 7aedc7f commit 0778dd0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ibllib/pipes/ephys_preprocessing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -976,7 +976,7 @@ def _run(self, cams=None, overwrite=False):
976976
expected_outputs_present, expected_outputs = self.assert_expected(self.output_files, silent=True)
977977
if overwrite is False and expected_outputs_present is True:
978978
actual_outputs.extend(expected_outputs)
979-
continue
979+
return actual_outputs
980980
else:
981981
file_mp4 = next(self.session_path.joinpath('raw_video_data').glob(f'_iblrig_{cam}Camera.raw*.mp4'))
982982
if not file_mp4.exists():

release_notes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## To be added to next release
2+
- Fix in EphysDLC task to not return multiple copies of outputs
3+
14
## Release Note 2.9
25

36
### Release Notes 2.9.1 2022-01-24

0 commit comments

Comments
 (0)