Skip to content
Snippets Groups Projects
Commit 6209b440 authored by Jenkins's avatar Jenkins
Browse files

Finished release 0.86.

parents 66b14da6 9a64ecbc
No related branches found
No related tags found
No related merge requests found
......@@ -407,7 +407,11 @@ class VLANDashboardStrategy(DashboardStrategy):
router = host.replace(".geant.net", "")
panel_title = f"{router} - {{}} - {interface_name} - {description}"
base_interface = interface_name.split(".")[0]
if ':' in interface_name:
# Epipe interfaces have a colon in their name
base_interface = interface_name.split(":")[0]
else:
base_interface = interface_name.split(".")[0]
dropdown = dropdowns.setdefault(base_interface, [])
dropdown.append(
......
......@@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
## [0.86] - 2025-07-07
- Fix grouping of EPIPE interfaces in VLAN dashboards
## [0.85] - 2025-07-07
- Add EPIPE to VLAN types to fix /poller/interfaces schema validation
......
......@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
setup(
name='brian-dashboard-manager',
version="0.85",
version="0.86",
author='GEANT',
author_email='swd@geant.org',
description='',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment