Use heat.engine.resource.UpdateReplace

We switched all of the in-tree uses back to
heat.engine.resource.UpdateReplace in change:
c5ebe66ce9
Now we have two new places using exception.UpdateReplace,
correct them.

Change-Id: I96b0ff197ddbd73bd60feba51d663acf9a98553a
This commit is contained in:
huangtianhua 2016-12-30 17:30:01 +08:00
parent 1413e9d344
commit 1a7881f7a5
2 changed files with 2 additions and 2 deletions

View File

@ -1162,7 +1162,7 @@ class Resource(object):
try:
runner(timeout=timeout, progress_callback=progress_callback)
update_tmpl_id_and_requires()
except exception.UpdateReplace:
except UpdateReplace:
raise
except BaseException:
with excutils.save_and_reraise_exception():

View File

@ -2025,7 +2025,7 @@ class ResourceTest(common.HeatTestCase):
new_temp, stack_id=self.stack.id)
res_data = {}
self.assertRaises(exception.UpdateReplace, res.update_convergence,
self.assertRaises(resource.UpdateReplace, res.update_convergence,
new_temp.id, res_data, 'engine-007',
-1, new_stack)