diff --git a/Changelog.md b/Changelog.md index 249cea66659aedd618e46203c8cecd1f31f63935..b704fe3994ed24a2a5a6c4700423ffaa2935e574 100644 --- a/Changelog.md +++ b/Changelog.md @@ -2,6 +2,9 @@ All notable changes to this project will be documented in this file. +## [0.95] - 2022-09-07 +- DBOARD3-669: Only add contacts from Related Services + ## [0.94] - 2022-09-06 - DBOARD3-664: Added Planned Work email addresses to related-services diff --git a/inventory_provider/tasks/worker.py b/inventory_provider/tasks/worker.py index fe8088f403e3005ad70a07dfaaa85d738c4004b8..d5b22a0fe7af71e597a6e5a4ba1ba82d1317238f 100644 --- a/inventory_provider/tasks/worker.py +++ b/inventory_provider/tasks/worker.py @@ -1039,7 +1039,10 @@ def transform_ims_data(data): circuits = port_id_services.get(details['port_id'], []) for circ in circuits: - contacts, pw_contacts = _get_circuit_contacts(circ) + # contacts, pw_contacts = _get_circuit_contacts(circ) + # we only want to include the Related Services contacts + contacts = set() + pw_contacts = set() circ['fibre-routes'] = [] for x in set(_get_fibre_routes(circ['id'])): c = { diff --git a/setup.py b/setup.py index f0f9f97ce2f280c8b32b13f548b899af4e85f672..012eb6922a933596c3d938c9c4b3711ac77ff7af 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name='inventory-provider', - version="0.94", + version="0.95", author='GEANT', author_email='swd@geant.org', description='Dashboard inventory provider',