summaryrefslogtreecommitdiffstats
path: root/tests/inspector.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/inspector.py')
-rw-r--r--tests/inspector.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/inspector.py b/tests/inspector.py
index 129a386a..3a0e9ade 100644
--- a/tests/inspector.py
+++ b/tests/inspector.py
@@ -75,10 +75,11 @@ def event_posted():
LOG.info('inspector = %s' % inspector)
LOG.info('received data = %s' % request.data)
d = json.loads(request.data)
- hostname = d['hostname']
- event_type = d['type']
- if event_type == 'compute.host.down':
- inspector.disable_compute_host(hostname)
+ for event in d:
+ hostname = event['details']['hostname']
+ event_type = event['type']
+ if event_type == 'compute.host.down':
+ inspector.disable_compute_host(hostname)
return "OK"