summaryrefslogtreecommitdiff
path: root/heat/common
diff options
context:
space:
mode:
authorrabi <ramishra@redhat.com>2018-03-08 22:15:50 +0530
committerrabi <ramishra@redhat.com>2018-07-26 09:50:51 +0530
commit3ab4f15a43aee3d943f080b6fa7a67c8f25eee61 (patch)
tree8d38e9ece1372046a14959df8771df13ccaa5382 /heat/common
parentbea5084ea814cb8e1b5c92fa7573b78b201b5489 (diff)
downloadheat-3ab4f15a43aee3d943f080b6fa7a67c8f25eee61.tar.gz
Option for retrieving child templates and env files from swift
This provides an option to specify a swift container for stack actions and all child templates and env files will be fetched from the container, if available. However, files coming in the 'files' map from the client will have precedence, if the same is also present in swift. Change-Id: Ifa21fbcb41fcb77827997cce2d5e9266ba849b17 Story: #1755453 Task: 17353
Diffstat (limited to 'heat/common')
-rw-r--r--heat/common/exception.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/heat/common/exception.py b/heat/common/exception.py
index 02d817b08..a60981339 100644
--- a/heat/common/exception.py
+++ b/heat/common/exception.py
@@ -478,6 +478,10 @@ class RequestLimitExceeded(HeatException):
msg_fmt = _('Request limit exceeded: %(message)s')
+class DownloadLimitExceeded(HeatException):
+ msg_fmt = _('Permissible download limit exceeded: %(message)s')
+
+
class StackResourceLimitExceeded(HeatException):
msg_fmt = _('Maximum resources per stack exceeded.')