diff options
author | shangxdy <shang.xiaodong@zte.com.cn> | 2017-09-14 19:45:53 +0800 |
---|---|---|
committer | shangxdy <shang.xiaodong@zte.com.cn> | 2017-09-14 19:45:53 +0800 |
commit | c1c67048665a6186490b0039407f3d4c8088182f (patch) | |
tree | a07b3072044965c0afe36b620f3e053ca9db51cd /tosca2heat/tosca-parser/toscaparser/common | |
parent | 87920ff99ba0a2ba5cbe0532a4f6d94846525f51 (diff) |
Add required parameters validation for nested service
Add validation for SDC from ONAP when use parse in design time: ignore
nested parameters(inputs and outputs) validation and only print warning
message.
JIRA: PARSER-141
Change-Id: Idd3b35a197594e9a7ff38024f16acfa650728bd1
Signed-off-by: shangxdy <shang.xiaodong@zte.com.cn>
Diffstat (limited to 'tosca2heat/tosca-parser/toscaparser/common')
-rw-r--r-- | tosca2heat/tosca-parser/toscaparser/common/exception.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tosca2heat/tosca-parser/toscaparser/common/exception.py b/tosca2heat/tosca-parser/toscaparser/common/exception.py index 9fb331d..67a9f7f 100644 --- a/tosca2heat/tosca-parser/toscaparser/common/exception.py +++ b/tosca2heat/tosca-parser/toscaparser/common/exception.py @@ -20,7 +20,7 @@ import traceback from toscaparser.utils.gettextutils import _ -log = logging.getLogger(__name__) +log = logging.getLogger('tosca') class TOSCAException(Exception): @@ -207,7 +207,7 @@ class ExceptionCollector(object): @staticmethod def removeException(exception_type): - if ExceptionCollector.collecting: + if ExceptionCollector.collecting and ExceptionCollector.exceptions: for i, e in enumerate(ExceptionCollector.exceptions): if isinstance(e, exception_type): del ExceptionCollector.exceptions[i] |