forked from p15670423/monkey
Island: Handle StorageError in handle_scan_data
This commit is contained in:
parent
304dfbd21f
commit
eacd426969
|
@ -8,6 +8,7 @@ from monkey_island.cc.repository import (
|
|||
IMachineRepository,
|
||||
INodeRepository,
|
||||
RetrievalError,
|
||||
StorageError,
|
||||
UnknownRecordError,
|
||||
)
|
||||
|
||||
|
@ -52,5 +53,5 @@ class handle_scan_data:
|
|||
self._node_repository.upsert_communication(
|
||||
src_machine.id, dest_machine.id, CommunicationType.SCANNED
|
||||
)
|
||||
except (RetrievalError, UnknownRecordError) as err:
|
||||
except (RetrievalError, StorageError, UnknownRecordError) as err:
|
||||
logger.error(f"Unable to process scan data: {err}")
|
||||
|
|
Loading…
Reference in New Issue