From 97a681eb6d12c1d26808d955922a71267e5ae816 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Fri, 31 May 2019 09:59:14 +0100 Subject: [PATCH] Remove 'InstanceUnknownCell' exception This should have been removed in change I1dd6abcc2be17ff76f108e7ff3771314f33259c6 but was not. Remove it now. Part of blueprint remove-cells-v1 Change-Id: I52f3e4b191d14a2808315081b79474ebe0ce4f79 Signed-off-by: Stephen Finucane --- nova/exception.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/nova/exception.py b/nova/exception.py index 227e865fd688..a463e1f27d54 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -1286,10 +1286,6 @@ class CellTimeout(NotFound): msg_fmt = _("Timeout waiting for response from cell") -class InstanceUnknownCell(NotFound): - msg_fmt = _("Cell is not known for instance %(instance_uuid)s") - - class SchedulerHostFilterNotFound(NotFound): msg_fmt = _("Scheduler Host Filter %(filter_name)s could not be found.")