fix: [cve + crawler] fix crawler lacus client refresh + typo

pull/594/head
Terrtia 2023-04-05 09:51:42 +02:00
parent 427a6fbfa1
commit d2fdc6107e
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
2 changed files with 5 additions and 1 deletions

View File

@ -58,7 +58,11 @@ class Crawler(AbstractModule):
def refresh_lacus_status(self):
try:
lacus_up = self.is_lacus_up
self.is_lacus_up = crawlers.get_lacus().is_up
# refresh lacus
if not lacus_up and self.is_lacus_up
self.lacus = crawlers.get_lacus()
except:
self.is_lacus_up = False
if not self.is_lacus_up:

View File

@ -115,7 +115,7 @@ class AbstractDaterangeObject(AbstractObject, ABC):
# if hash already in item
def _add(self, date, item_id):
if not self.exists():
self._add_create(date)
self._add_create()
self.set_first_seen(date)
self.set_last_seen(date)
else: