From b4c1ddaa8cbe0036c4d1c1e1cda247e256d02130 Mon Sep 17 00:00:00 2001 From: ZhaoBo Date: Mon, 9 Jan 2017 14:38:35 +0800 Subject: [PATCH] Correct the msg ipv6 enable in system net.ipv6.conf.default.disable_ipv6 = 1 means disable ipv6. We should correct it in the same with code logic. Change-Id: I6be6a9759878667d145cdd49de6cc10b7822957f --- neutron/common/ipv6_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/common/ipv6_utils.py b/neutron/common/ipv6_utils.py index 789ada8de96..38a13d74805 100644 --- a/neutron/common/ipv6_utils.py +++ b/neutron/common/ipv6_utils.py @@ -48,7 +48,7 @@ def is_enabled_and_bind_by_default(): LOG.info(_LI("IPv6 not present or configured not to bind to new " "interfaces on this system. Please ensure IPv6 is " "enabled and /proc/sys/net/ipv6/conf/default/" - "disable_ipv6 is set to 1 to enable IPv6.")) + "disable_ipv6 is set to 0 to enable IPv6.")) return _IS_IPV6_ENABLED