]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Fixes Opt type of "topologyname"
authorZhongyue Luo <zhongyue.nah@intel.com>
Thu, 18 Jul 2013 06:31:14 +0000 (15:31 +0900)
committerZhongyue Luo <zhongyue.nah@intel.com>
Thu, 18 Jul 2013 07:50:03 +0000 (16:50 +0900)
Changed topologyname from IntOpt to StrOpt

Fixes bug #1202538

Change-Id: I8cabf1868d5eac04dd31271932d5c4fadae78935

neutron/plugins/plumgrid/plumgrid_nos_plugin/plumgrid_plugin.py

index b1ad36b265adb91a745c402389d03be93794f0ac..5004e177dbbeaf4cb207d8000830f969a9d6ffd8 100644 (file)
@@ -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")), ]