← Back to team overview

yahoo-eng-team team mailing list archive

[Bug 1310455] [NEW] IBM SDN VE Plugin convert ips from configuration error.

 

Public bug reported:

The ips of controller is identified in sdnve_neutron_plugin.ini as 'controller_ips = a.b.c.d'
However,  the internal process in the sdnve agent will only take 'a' as the controller IP.

The code of sdnve_neutron_agent.py  should be modified as the following:

controller_ips = config.SDNVE.controller_ips
LOG.info(_("Controller IPs: %s"), controller_ips)
- controller_ip = controller_ips[0]
+controller_ip = controller_ips.split(',')[0]

** Affects: neutron
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of Yahoo!
Engineering Team, which is subscribed to neutron.
https://bugs.launchpad.net/bugs/1310455

Title:
  IBM SDN VE Plugin convert ips from configuration error.

Status in OpenStack Neutron (virtual network service):
  New

Bug description:
  The ips of controller is identified in sdnve_neutron_plugin.ini as 'controller_ips = a.b.c.d'
  However,  the internal process in the sdnve agent will only take 'a' as the controller IP.

  The code of sdnve_neutron_agent.py  should be modified as the
  following:

  controller_ips = config.SDNVE.controller_ips
  LOG.info(_("Controller IPs: %s"), controller_ips)
  - controller_ip = controller_ips[0]
  +controller_ip = controller_ips.split(',')[0]

To manage notifications about this bug go to:
https://bugs.launchpad.net/neutron/+bug/1310455/+subscriptions


Follow ups

References