diff options
author | Tibor Frank <tifrank@cisco.com> | 2019-01-02 09:49:01 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2019-01-02 14:45:07 +0000 |
commit | 42fe666a56bb77efec0dd08268ee57e6482962d3 (patch) | |
tree | fbb35431ef8da40ff47f2e66ff85ea4afd62813a /resources/tools/presentation/pal.py | |
parent | ff8ba5fd5fd066332b4b109caad09e5dbb86b853 (diff) |
Trending: Align the content of old and new dirs
Change-Id: I39d1f71adac0bad3dbe18a987909904ea5c1e6cb
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/pal.py')
-rw-r--r-- | resources/tools/presentation/pal.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/resources/tools/presentation/pal.py b/resources/tools/presentation/pal.py index 5e419210aa..39cba09d96 100644 --- a/resources/tools/presentation/pal.py +++ b/resources/tools/presentation/pal.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018 Cisco and/or its affiliates. +# Copyright (c) 2019 Cisco and/or its affiliates. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at: @@ -112,8 +112,11 @@ def main(): logging.info("Successfully finished.") elif spec.output["output"] == "CPTA": sys.stdout.write(generate_cpta(spec, data)) - alert = Alerting(spec) - alert.generate_alerts() + try: + alert = Alerting(spec) + alert.generate_alerts() + except AlertingError as err: + logging.warning(repr(err)) logging.info("Successfully finished.") ret_code = 0 |