diff --git a/Changelog.md b/Changelog.md index c877fbebafba134c13dca3ff6b39092e1c55d8ed..6c0eb911f71e29b458ec09795005cf33770e8092 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,9 @@ All notable changes to this project will be documented in this file. +## [0.137] - 2024-11-18 +- Restore NREN dashboard for EAP NRENs in /poller/interfaces + ## [0.136] - 2024-10-30 - POL1-855: Remove PHY SPARE interfaces showing up in dashboards diff --git a/inventory_provider/routes/poller.py b/inventory_provider/routes/poller.py index 9ad778941874ca6835b03bf400bfed80306334e6..768fb200f5a22fdca4af9eb153c6662194cdc4a4 100644 --- a/inventory_provider/routes/poller.py +++ b/inventory_provider/routes/poller.py @@ -546,7 +546,7 @@ def _get_dashboards(interface, region=None): if is_phy_upstream: yield BRIAN_DASHBOARDS.GWS_PHY_UPSTREAM regex = r'(PHY|LAG|(SRV_(GLOBAL|LHCONE|MDVPN|IAS|CLS|L3VPN))) CUSTOMER\s' - if re.match(regex, description) and region is None: + if re.match(regex, description): yield BRIAN_DASHBOARDS.NREN if "GA-" in description and "ANA-" in description: yield BRIAN_DASHBOARDS.ANA diff --git a/setup.py b/setup.py index 7077e01de991f76c3a3c92d43f921e0d9ab2d0d8..d98c145cf66d6f1723ef917b2d4b6260906f1d57 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='inventory-provider', - version="0.136", + version="0.137", author='GEANT', author_email='swd@geant.org', description='Dashboard inventory provider',