From 95a63d1b701b5b0c7fe731bf170ccd4f22de9fa6 Mon Sep 17 00:00:00 2001 From: Zhongyue Luo Date: Thu, 18 Jul 2013 15:31:14 +0900 Subject: [PATCH] Fixes Opt type of "topologyname" Changed topologyname from IntOpt to StrOpt Fixes bug #1202538 Change-Id: I8cabf1868d5eac04dd31271932d5c4fadae78935 --- neutron/plugins/plumgrid/plumgrid_nos_plugin/plumgrid_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/plugins/plumgrid/plumgrid_nos_plugin/plumgrid_plugin.py b/neutron/plugins/plumgrid/plumgrid_nos_plugin/plumgrid_plugin.py index b1ad36b26..5004e177d 100644 --- a/neutron/plugins/plumgrid/plumgrid_nos_plugin/plumgrid_plugin.py +++ b/neutron/plugins/plumgrid/plumgrid_nos_plugin/plumgrid_plugin.py @@ -46,7 +46,7 @@ nos_server_opts = [ help=_("PLUMgrid NOS admin password")), cfg.IntOpt('servertimeout', default=5, help=_("PLUMgrid NOS server timeout")), - cfg.IntOpt('topologyname', default='t1', + cfg.StrOpt('topologyname', default='t1', help=_("PLUMgrid NOS topology name")), ] -- 2.45.2