From 34c351a62e3e03016534c1707f95c826b390a3c5 Mon Sep 17 00:00:00 2001 From: Jeremy Hanmer Date: Mon, 6 Apr 2015 15:37:39 -0700 Subject: [PATCH] change floatingip_subnet to ListOpt For deployment, MultiStrOpt is a bit more difficult to deal with than ListOpt so let's switch floatingip_subnet over to ListOpt while we still can. --- akanda/neutron/plugins/floatingip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/akanda/neutron/plugins/floatingip.py b/akanda/neutron/plugins/floatingip.py index 19d4ec8..9458cf1 100644 --- a/akanda/neutron/plugins/floatingip.py +++ b/akanda/neutron/plugins/floatingip.py @@ -27,7 +27,7 @@ from oslo.config import cfg LOG = log.getLogger(__name__) explicit_floating_ip_opts = [ - cfg.MultiStrOpt( + cfg.ListOpt( 'floatingip_subnet', default=[], help='UUID(s) of subnet(s) from which floating IPs can be allocated',