NSX-V3| fix devstack cleanup

Backend list results do not always have the cursor field so we should use
get when accessing it.

Change-Id: I3f31b56c50a8f014cc322ceb5e6c69b5540c879e
This commit is contained in:
Adit Sarfaty 2017-06-15 12:06:07 +03:00 committed by garyk
parent 5e5b75c5ea
commit 7102def745
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ class NSXClient(object):
while missing > 0 and not cursor.startswith(self.NULL_CURSOR_PREFIX):
response = requests.get(url + cursor, headers=self.headers,
verify=self.verify, params=params).json()
cursor = response['cursor']
cursor = response.get('cursor', self.NULL_CURSOR_PREFIX)
missing -= len(response['results'])
results += response['results']