Skip to content

Commit

Permalink
Merge pull request #2449 from qux-bbb/patch-1
Browse files Browse the repository at this point in the history
FIX: Let modified_pulses_only can be changed
  • Loading branch information
sebix committed Feb 5, 2024
2 parents 686cbe3 + d951eec commit 51994d1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@
- Minor fixes/improvements and some refactoring (see also above: *Core*...).
- `intelmq.bots.collectors.shadowserver.collector_reports_api`:
- The 'json' option is no longer supported as the 'csv' option provides better performance (PR#2372 by elsif2).
- `intelmq.bots.collectors.alienvault_otx.collector` (PR#2449 by qux-bbb):
- Fix modified_pulses_only is always False.


#### Parsers
- `intelmq.bots.parsers.netlab_360.parser`: Removed as the feed is discontinued. (#2442 by Filip Pokorný)
Expand Down
4 changes: 0 additions & 4 deletions intelmq/bots/collectors/alienvault_otx/collector.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ def init(self):
if OTXv2 is None:
raise MissingDependencyError("OTXv2")

self.modified_pulses_only = False
if hasattr(self, 'modified_pulses_only'):
self.modified_pulses_only = self.modified_pulses_only

def process(self):
self.logger.info("Downloading report through API.")
otx = OTXv2(self.api_key, proxy=self.https_proxy)
Expand Down

0 comments on commit 51994d1

Please sign in to comment.