Skip to content

Commit

Permalink
Merge pull request #97 from mattgreene/1.0
Browse files Browse the repository at this point in the history
Issues: #96
  • Loading branch information
mattgreene committed May 6, 2016
2 parents 39ad427 + 89c0205 commit 3e72bf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agent/f5/oslbaasv1agent/drivers/bigip/vips.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def assure_bigip_create_vip(self, bigip, service, traffic_group):
just_added_vip:
self._update_bigip_vip(bigip, service)
if self.l3_binding:
self.l3_binding.bind_address(subnet_id=vip['subnet']['id'],
self.l3_binding.bind_address(subnet_id=vip['subnet_id'],
ip_address=ip_address)

def assure_bigip_delete_vip(self, bigip, service):
Expand All @@ -98,7 +98,7 @@ def assure_bigip_delete_vip(self, bigip, service):
vip['id'],
folder=vip['tenant_id'])
if self.l3_binding:
self.l3_binding.unbind_address(subnet_id=vip['subnet']['id'],
self.l3_binding.unbind_address(subnet_id=vip['subnet_id'],
ip_address=vip['address'])

def _create_bigip_vip(self, bigip, service, vip_info):
Expand Down

0 comments on commit 3e72bf6

Please sign in to comment.