summaryrefslogtreecommitdiff
path: root/openstack_dashboard/exceptions.py
diff options
context:
space:
mode:
authorAkihiro Motoki <amotoki@gmail.com>2017-11-28 21:12:02 +0900
committerKazunori Shinohara <ksnhr.tech@gmail.com>2017-12-05 07:38:55 +0000
commiteac3e7032a48fb9f03f56af0cc2e2085d55af0d0 (patch)
tree23cbf0226f0b8d3dd11e6926de65216022737a00 /openstack_dashboard/exceptions.py
parentdee95a0dfd20f6a74ebdf7a5552962322dcf2c06 (diff)
downloadhorizon-eac3e7032a48fb9f03f56af0cc2e2085d55af0d0.tar.gz
Drop Heat related code from horizon
Orchestration tab in the admin info panel needs a discussion. It seems not to be covered by heat-dashboard yet. blueprint heat-dashboard-split-out Change-Id: I56e6edb1f2ac72e2f42d0e9f3291308e67f24cad
Diffstat (limited to 'openstack_dashboard/exceptions.py')
-rw-r--r--openstack_dashboard/exceptions.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/openstack_dashboard/exceptions.py b/openstack_dashboard/exceptions.py
index 520214d75..e77e12b3e 100644
--- a/openstack_dashboard/exceptions.py
+++ b/openstack_dashboard/exceptions.py
@@ -18,7 +18,6 @@
from cinderclient import exceptions as cinderclient
from glanceclient.common import exceptions as glanceclient
-from heatclient import exc as heatclient
from keystoneclient import exceptions as keystoneclient
from neutronclient.common import exceptions as neutronclient
from novaclient import exceptions as novaclient
@@ -32,7 +31,6 @@ UNAUTHORIZED = (
novaclient.Unauthorized,
glanceclient.Unauthorized,
neutronclient.Unauthorized,
- heatclient.HTTPUnauthorized,
)
@@ -42,7 +40,6 @@ NOT_FOUND = (
novaclient.NotFound,
glanceclient.NotFound,
neutronclient.NotFound,
- heatclient.HTTPNotFound,
)
@@ -62,7 +59,5 @@ RECOVERABLE = (
neutronclient.Forbidden,
neutronclient.NeutronClientException,
swiftclient.ClientException,
- heatclient.HTTPForbidden,
- heatclient.HTTPException,
requests.RequestException,
)