From: Ihar Hrachyshka Date: Thu, 8 Jan 2015 15:25:01 +0000 (+0100) Subject: Clarify dnsmasq version check failure message X-Git-Url: https://review.fuel-infra.org/gitweb?a=commitdiff_plain;h=0e0b248e4b53cc4e0b7350a3492f7435a33dfbd8;p=openstack-build%2Fneutron-build.git Clarify dnsmasq version check failure message It not only *may* not run correctly, it *will*, since we exit the agent. Change-Id: Icd5c22da3b4c60751265183563cf3a1edc814215 --- 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)