Skip to content

Commit

Permalink
lb-member-delete with wrong id issue is fixed
Browse files Browse the repository at this point in the history
since 'name' key is missed in the dictionary,
filter is failing which causes loadbalancer member delete
works for any name

Change-Id: I240aa7e833d163e75c7b72702b1c58e274cc3dea
Closes-bug: 1540733
  • Loading branch information
ymariappan committed Aug 3, 2016
1 parent fb398b3 commit 1fd76cf
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -56,6 +56,7 @@ def _get_member_pool_id(self, member):

def make_dict(self, member, fields=None):
res = {'id': member.uuid,
'name': member.name,
'pool_id': member.parent_uuid,
'status': self._get_object_status(member)}

Expand Down

0 comments on commit 1fd76cf

Please sign in to comment.