diff --git a/devstack/tools/nsxv3_cleanup.py b/devstack/tools/nsxv3_cleanup.py index eb45ecf4c2..de43ee90af 100755 --- a/devstack/tools/nsxv3_cleanup.py +++ b/devstack/tools/nsxv3_cleanup.py @@ -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']