Skip to content

Commit

Permalink
fix: dataset.get_compatible_processors do not crash on depricated dat…
Browse files Browse the repository at this point in the history
…asets (no own_processor)
  • Loading branch information
dale-wahl committed Dec 19, 2024
1 parent 4539c82 commit 817b4ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion common/lib/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -1320,7 +1320,8 @@ def get_compatible_processors(self, user=None):
if processor.is_from_collector():
continue

if self.get_own_processor().exclude_followup_processors(processor_type):
own_processor = self.get_own_processor()
if own_processor and own_processor.exclude_followup_processors(processor_type):
continue

# consider a processor compatible if its is_compatible_with
Expand Down

0 comments on commit 817b4ee

Please sign in to comment.