From 4082f729c9f6e49ff6aa63679d2d83e6b163d3f2 Mon Sep 17 00:00:00 2001 From: YanXingan Date: Tue, 22 Dec 2015 14:39:47 +0800 Subject: [PATCH] Correct state_path option's help string Make it consistent with neutron/common/config.py Change-Id: If7a57247f65280db9dced69068f8c8f5d7e243d5 --- neutron/agent/common/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/neutron/agent/common/config.py b/neutron/agent/common/config.py index 8b040f38496..d8ed1a133b4 100644 --- a/neutron/agent/common/config.py +++ b/neutron/agent/common/config.py @@ -159,7 +159,8 @@ def setup_conf(): bind_opts = [ cfg.StrOpt('state_path', default='/var/lib/neutron', - help=_('Top-level directory for maintaining dhcp state')), + help=_("Where to store Neutron state files. " + "This directory must be writable by the agent.")), ] conf = cfg.ConfigOpts()