Agent: Set timeout to None for custom PBA

This commit is contained in:
Mike Salvatore 2022-04-07 13:25:40 -04:00
parent b99178832a
commit 13b7e470db
1 changed files with 3 additions and 1 deletions

View File

@ -26,7 +26,9 @@ class CustomPBA(PBA):
"""
def __init__(self, telemetry_messenger: ITelemetryMessenger):
super(CustomPBA, self).__init__(telemetry_messenger, POST_BREACH_FILE_EXECUTION)
super(CustomPBA, self).__init__(
telemetry_messenger, POST_BREACH_FILE_EXECUTION, timeout=None
)
self.filename = ""
def run(self, options: Dict) -> Iterable[PostBreachData]: