Merge "Ensure errors_out_migration errors out migration"

This commit is contained in:
Jenkins 2017-09-27 16:35:37 +00:00 committed by Gerrit Code Review
commit 3174ee13a1
2 changed files with 1 additions and 26 deletions

View File

@ -114,16 +114,8 @@ def errors_out_migration_ctxt(migration):
try:
yield
except Exception as ex:
except Exception:
with excutils.save_and_reraise_exception():
# NOTE(rajesht): If InstanceNotFound error is thrown from
# decorated function, migration status should be set to
# 'error', without checking current migration status.
if not isinstance(ex, exception.InstanceNotFound):
status = migration.status
if status not in ['migrating', 'post-migrating']:
return
migration.status = 'error'
try:
with migration.obj_as_admin():

View File

@ -19,7 +19,6 @@ import time
from cinderclient import exceptions as cinder_exception
from cursive import exception as cursive_exception
import ddt
from eventlet import event as eventlet_event
import mock
import netaddr
@ -5385,7 +5384,6 @@ class ComputeManagerBuildInstanceTestCase(test.NoDBTestCase):
self.assertEqual(expected_call, create_error_call)
@ddt.ddt
class ComputeManagerErrorsOutMigrationTestCase(test.NoDBTestCase):
def setUp(self):
super(ComputeManagerErrorsOutMigrationTestCase, self).setUp()
@ -5436,21 +5434,6 @@ class ComputeManagerErrorsOutMigrationTestCase(test.NoDBTestCase):
mock_save.assert_called_once_with()
mock_obj_as_admin.assert_called_once_with()
@ddt.data('completed', 'finished')
@mock.patch.object(objects.Migration, 'save')
def test_status_exclusion(self, status, mock_save):
# Tests that errors_out_migration doesn't error out migration if the
# status is anything other than 'migrating' or 'post-migrating'
self.migration.status = status
def test_function():
with manager.errors_out_migration_ctxt(self.migration):
raise test.TestingException()
self.assertRaises(test.TestingException, test_function)
self.assertEqual(status, self.migration.status)
mock_save.assert_not_called()
class ComputeManagerMigrationTestCase(test.NoDBTestCase):
class TestResizeError(Exception):