Skip to content
Snippets Groups Projects
Commit d5bb5a86 authored by Erik Reid's avatar Erik Reid
Browse files

removed debugging try/except

parent db870d52
No related branches found
No related tags found
No related merge requests found
......@@ -386,12 +386,8 @@ def _add_dashboards(interfaces):
"""
for ifc in interfaces:
try:
dashboards = _get_dashboards(ifc)
ifc['dashboards'] = sorted(list(d.name for d in dashboards))
except:
logger.exception('???')
raise
dashboards = _get_dashboards(ifc)
ifc['dashboards'] = sorted(list(d.name for d in dashboards))
yield ifc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment