~ubuntu-branches/ubuntu/utopic/neutron/utopic-proposed

« back to all changes in this revision

Viewing changes to neutron/tests/unit/bigswitch/test_router_db.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Corey Bryant
  • Date: 2015-02-09 15:36:16 UTC
  • mfrom: (1.1.20)
  • Revision ID: package-import@ubuntu.com-20150209153616-70c0k83tuf0e6vyk
Tags: 1:2014.2.2-0ubuntu1
[ Corey Bryant ]
* Resynchronize with stable/juno (615e2d6) (LP: #1418695):
  - [3f73028] Configures RADVD to send managed flag in RA for DHCP_STATEFUL
  - [57bbce1] Arista L3 Ops is success if it is successful on one peer
  - [c1e2941] Fixes blocking of VRF config in Arista L3 Plugin
  - [81f1a7b] Do not duplicate message consumers
  - [fbabf07] If router is HA, get current_cidrs from keepalived object
  - [3332d4f] Fix AttributeError during startup of ovs agent in DVR mode
  - [755f2ad] Fix IP allocation for multiple slaac subnets
  - [e27f00d] Fix IPv6 Subnet Slaac Check
  - [88b73e6] Catch StaleDataError in update_device_down
  - [6d9dd88] Speed up initial L3 full sync time
  - [dbc630a] Make L3 HA VIPs ordering consistent in keepalived.conf
  - [82bf4af] Specify prefix length for IPv6 subnets
  - [42630f9] Fix for KeyError: 'gw_port_host' on l3_agent
  - [7c82512] NSX: synchronize floating IP operations
  - [5531d6d] NSX: Remove logic for creating chained logical switches
  - [b80a68e] [apic ml2] Bind ports regardless of the owner
  - [175e869] Reset policies after RESOURCE_ATTRIBUTE_MAP is populated
  - [66a91dd] Use stop() method on MessageHandlingServer
  - [097607a] Issue warning when running DHCP agent with dnsmasq < 2.67
  - [560ef81] Fix neutron hang for IPv6 allocation pool update
  - [f979dd6] Fix for FIPs duplicated across hosts for DVR
  - [327e325] ipv6: set OtherConfig flag for DHCPv6 stateless subnets
  - [6c490a9] radvd: pass -m syslog to avoid thread lock for radvd 2.0+
  - [a89ae1b] Eventlet green threads not released back to pool
  - [c6ef4e8] return the dict of port when no sec-group involved
  - [ab8f277] Moves the HA resource creations outside of transaction
  - [b776d19] Delete FIP namespace when last VM is deleted
  - [81ecf5b] Fix race condition on processing DVR floating IPs
  - [b297604] Fix a race condition adding a security group rule
  - [2f97180] Auto allocate gateway_ip even for SLAAC subnets
  - [6068320] Fix enable_metadata_network flag
  - [c96217a] Teach DHCP Agent about DVR router interfaces
  - [615e2d6] BSN: Optimistic locking strategy for consistency
* d/control: Bump minimum python-eventlet to get socket_timeout support.
  (LP: #1419117).

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
        self.setup_config_files()
62
62
        super(test_extradhcp.ExtraDhcpOptDBTestCase,
63
63
              self).setUp(plugin=self._plugin_name)
 
64
        self.setup_db()
64
65
        self.startHttpPatch()
65
66
 
66
67
 
78
79
        super(RouterDBTestBase, self).setUp(plugin=self._plugin_name,
79
80
                                            ext_mgr=ext_mgr,
80
81
                                            service_plugins=service_plugins)
 
82
        self.setup_db()
81
83
        cfg.CONF.set_default('allow_overlapping_ips', False)
82
84
        self.plugin_obj = manager.NeutronManager.get_service_plugins().get(
83
85
            'L3_ROUTER_NAT')