From c4b00ff6d0347302166acb1d0f2b78ad53eb561d Mon Sep 17 00:00:00 2001 From: Robert Latta <robert.latta@geant.org> Date: Fri, 19 Mar 2021 15:51:37 +0000 Subject: [PATCH] corrected empty locations check --- inventory_provider/routes/classifier.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/inventory_provider/routes/classifier.py b/inventory_provider/routes/classifier.py index bdb9e961..fec65599 100644 --- a/inventory_provider/routes/classifier.py +++ b/inventory_provider/routes/classifier.py @@ -210,7 +210,8 @@ def get_interface_services_and_locs(ims_source_equipment, ims_interface, r): result['services'] = json.loads(raw_services.decode('utf-8')) result['related-services'] = \ list(get_related_services(ims_source_equipment, ims_interface, r)) - result['locations'] = _location_from_services(result['services'], r) + result['locations'] = \ + list(_location_from_services(result['services'], r)) if not result['services']: result.pop('services', None) if result['related-services']: -- GitLab