If exception thrown from exploit, we now send telemetry about trying

This commit is contained in:
Itay Mizeretz 2017-09-28 16:14:30 +03:00
parent 7365f7d6a7
commit 6233fec0f7
1 changed files with 3 additions and 1 deletions

View File

@ -171,9 +171,11 @@ class ChaosMonkey(object):
ControlClient.send_telemetry('exploit', {'result': False, 'machine': machine.__dict__,
'exploiter': exploiter.__class__.__name__})
except Exception, exc:
except Exception as exc:
LOG.error("Exception while attacking %s using %s: %s",
machine, exploiter.__class__.__name__, exc)
ControlClient.send_telemetry('exploit', {'result': False, 'machine': machine.__dict__,
'exploiter': exploiter.__class__.__name__})
continue
if successful_exploiter: