From 0e0b248e4b53cc4e0b7350a3492f7435a33dfbd8 Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Thu, 8 Jan 2015 16:25:01 +0100 Subject: [PATCH] Clarify dnsmasq version check failure message It not only *may* not run correctly, it *will*, since we exit the agent. Change-Id: Icd5c22da3b4c60751265183563cf3a1edc814215 --- neutron/agent/linux/dhcp.py | 1 - 1 file changed, 1 deletion(-) diff --git a/neutron/agent/linux/dhcp.py b/neutron/agent/linux/dhcp.py index c3cae0197..81596087d 100644 --- a/neutron/agent/linux/dhcp.py +++ b/neutron/agent/linux/dhcp.py @@ -327,7 +327,6 @@ class Dnsmasq(DhcpLocalProcess): ver = float(m.group(1)) if m else 0 if ver < cls.MINIMUM_VERSION: LOG.error(_LE('FAILED VERSION REQUIREMENT FOR DNSMASQ. ' - 'DHCP AGENT MAY NOT RUN CORRECTLY! ' 'Please ensure that its version is %s ' 'or above!'), cls.MINIMUM_VERSION) raise SystemExit(1) -- 2.45.2