From 60da388de842a0e3b11aed8f4f4e2e21ab270660 Mon Sep 17 00:00:00 2001 From: Belmiro Moreira Date: Tue, 4 Feb 2014 21:32:39 +0100 Subject: [PATCH] Fix VirtualInterfaceMacAddressException message Previous the message reflected the default value of create_unique_mac_address_attempts configuration option. Changed to a generic message. Change-Id: I55c5f95cfc7ac4183e08a7880cbbb9670a02cef4 Closes-Bug: #1276312 --- nova/exception.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nova/exception.py b/nova/exception.py index d6431bc1a48f..75806fd59438 100644 --- a/nova/exception.py +++ b/nova/exception.py @@ -152,8 +152,8 @@ class VirtualInterfaceCreateException(NovaException): class VirtualInterfaceMacAddressException(NovaException): - msg_fmt = _("5 attempts to create virtual interface" - "with unique mac address failed") + msg_fmt = _("Creation of virtual interface with " + "unique mac address failed") class GlanceConnectionFailed(NovaException):