From 3b741bad7a961ad8f2ec9e52614d49fdf961bdb6 Mon Sep 17 00:00:00 2001 From: Monsyne Dragon Date: Wed, 1 Feb 2012 00:02:03 +0000 Subject: Capture bandwidth usage data before resize. Since resize is really a migrate, we need to capture usage data before resizing. This fixes bug 925587 Change-Id: I999cb0e7c6b17beff542dddb4be09235e83313f0 --- nova/tests/test_compute.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'nova/tests') diff --git a/nova/tests/test_compute.py b/nova/tests/test_compute.py index 54137a55c..400e6949f 100644 --- a/nova/tests/test_compute.py +++ b/nova/tests/test_compute.py @@ -1036,11 +1036,14 @@ class ComputeTestCase(BaseTestCase): instance_uuid, 'pre-migrating') - self.assertEquals(len(test_notifier.NOTIFICATIONS), 2) + self.assertEquals(len(test_notifier.NOTIFICATIONS), 3) msg = test_notifier.NOTIFICATIONS[0] self.assertEquals(msg['event_type'], - 'compute.instance.resize.prep.start') + 'compute.instance.exists') msg = test_notifier.NOTIFICATIONS[1] + self.assertEquals(msg['event_type'], + 'compute.instance.resize.prep.start') + msg = test_notifier.NOTIFICATIONS[2] self.assertEquals(msg['event_type'], 'compute.instance.resize.prep.end') self.assertEquals(msg['priority'], 'INFO') -- cgit