From 333399073ca25734f88925769648e8edd1e3e604 Mon Sep 17 00:00:00 2001 From: jichenjc Date: Sun, 27 Nov 2016 22:25:06 +0800 Subject: [PATCH] UnsupportedBDMVolumeAuthMethod is not used UnsupportedBDMVolumeAuthMethod is not used, this patch remove it as it's usless now Change-Id: I4b48063d16976a0a3d91b67bbcdb5753b60ee5f0 --- nova/exception.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/nova/exception.py b/nova/exception.py index d50b259a11..6a6fd0b945 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -194,11 +194,6 @@ class InvalidBDMVolume(InvalidBDM): "failed to get volume %(id)s.") -class UnsupportedBDMVolumeAuthMethod(InvalidBDM): - msg_fmt = _("Block Device Mapping is Invalid: " - "%(auth_method)s is unsupported.") - - class InvalidBDMImage(InvalidBDM): msg_fmt = _("Block Device Mapping is Invalid: " "failed to get image %(id)s.")