X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fpal.py;h=dfed6b3e62d4fe5aed21089c9da2a872cd430399;hb=36b2dffd55dee362d96aae98d563a0c2b475573e;hp=5e419210aac2ae16e3ad55d437695b0905ed1eb6;hpb=1077b448dd6c9397cfa5a3c2773ea4b8863f3016;p=csit.git diff --git a/resources/tools/presentation/pal.py b/resources/tools/presentation/pal.py index 5e419210aa..dfed6b3e62 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: @@ -101,7 +101,7 @@ def main(): prepare_static_content(spec) data = InputData(spec) - data.download_and_parse_data(repeat=2) + data.download_and_parse_data(repeat=1) generate_tables(spec, data) generate_plots(spec, data) @@ -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