From c47ead700d6c01cb5e6ee3740272deee0fee9633 Mon Sep 17 00:00:00 2001 From: Salvatore Orlando Date: Mon, 25 Mar 2013 16:51:24 +0100 Subject: [PATCH] Adjust exception message in l3 agent Bug 1159856 Change-Id: I8d30fd50d46677fc112fe4d8406b849cbb8ef225 --- quantum/agent/l3_agent.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/quantum/agent/l3_agent.py b/quantum/agent/l3_agent.py index 0464bc4e1..cda37203a 100644 --- a/quantum/agent/l3_agent.py +++ b/quantum/agent/l3_agent.py @@ -218,8 +218,9 @@ class L3NATAgent(manager.Manager): except rpc_common.RemoteError as e: if e.exc_type == 'TooManyExternalNetworks': msg = _( - "The 'gateway_external_network_id' must be configured" - " if Quantum has more than one external network.") + "The 'gateway_external_network_id' option must be " + "configured for this agent as Quantum has more than " + "one external network.") raise Exception(msg) else: raise -- 2.45.2