diff --git a/brian_dashboard_manager/templating/helpers.py b/brian_dashboard_manager/templating/helpers.py index c51ab7318433084bbead2bca94e59641da35508d..adff696f552c4e25c1f1b6219f26e97310d2d933 100644 --- a/brian_dashboard_manager/templating/helpers.py +++ b/brian_dashboard_manager/templating/helpers.py @@ -129,16 +129,15 @@ def get_nren_interface_data(services, interfaces, excluded_dashboards): 'scid': scid }) - else: - if 'MDVPN' in service['service_type']: - # MDVPN type services don't have data in BRIAN - continue - title = f'{name} ({sid})' - dashboard['SERVICES'].append({ - 'measurement': measurement, - 'title': title, - 'scid': scid - }) + if 'MDVPN' in service['service_type']: + # MDVPN type services don't have data in BRIAN + continue + title = f'{name} ({sid})' + dashboard['SERVICES'].append({ + 'measurement': measurement, + 'title': title, + 'scid': scid + }) for interface in interfaces: diff --git a/changelog.md b/changelog.md index cbe6b9032779bf306301c4600b86fb9b076c4235..a5fb046f48fec5788a000db3bfc86bab4a31d193 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,9 @@ All notable changes to this project will be documented in this file. +## [0.44] - 2022-09-22 +- POL1-533: Changed LAG services to be added under service list for NREN access dashboards + ## [0.43] - 2022-09-21 - POL1-629: Remove CLS section (existing interfaces merged into Peering) diff --git a/setup.py b/setup.py index 51d74284f55c2f9409655cd379debdc0a8065135..6f13dbb6d6dad43c4fd39301fbe66baab8e92190 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='brian-dashboard-manager', - version="0.43", + version="0.45", author='GEANT', author_email='swd@geant.org', description='',