]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Clarify dnsmasq version check failure message
authorIhar Hrachyshka <ihrachys@redhat.com>
Thu, 8 Jan 2015 15:25:01 +0000 (16:25 +0100)
committerIhar Hrachyshka <ihrachys@redhat.com>
Thu, 8 Jan 2015 15:26:15 +0000 (16:26 +0100)
It not only *may* not run correctly, it *will*, since we exit the agent.

Change-Id: Icd5c22da3b4c60751265183563cf3a1edc814215

neutron/agent/linux/dhcp.py

index c3cae01977161b80874ba0114e47c990ce4cd643..81596087d54ce85baafecdf74f283dcb6025d311 100644 (file)
@@ -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)