diff options
Diffstat (limited to 'heat/common/heat_keystoneclient.py')
-rw-r--r-- | heat/common/heat_keystoneclient.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/heat/common/heat_keystoneclient.py b/heat/common/heat_keystoneclient.py index 16c87ba96..1a426cff0 100644 --- a/heat/common/heat_keystoneclient.py +++ b/heat/common/heat_keystoneclient.py @@ -525,6 +525,8 @@ class KeystoneClientV3(object): # to get the project, so again we should do nothing try: project = self.domain_admin_client.projects.get(project=project_id) + except kc_exception.NotFound: + return except kc_exception.Forbidden: LOG.warning(_('Unable to get details for project %s, not deleting') % project_id) |