From 6ea2485f91e40301a92dc34193878ed61fa026ff Mon Sep 17 00:00:00 2001 From: Robert Latta <robert.latta@geant.org> Date: Thu, 25 Mar 2021 16:52:15 +0000 Subject: [PATCH] removed erroneous cache --- inventory_provider/db/ims_data.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/inventory_provider/db/ims_data.py b/inventory_provider/db/ims_data.py index 0602538b..f71c0195 100644 --- a/inventory_provider/db/ims_data.py +++ b/inventory_provider/db/ims_data.py @@ -2,7 +2,6 @@ import logging import re from collections import OrderedDict, defaultdict from copy import copy -from functools import lru_cache from itertools import chain from inventory_provider import environment @@ -25,8 +24,6 @@ IMS_OPSDB_STATUS_MAP = { STATUSES_TO_IGNORE = \ [InventoryStatus.OUT_OF_SERVICE.value] - -@lru_cache(64, typed=False) def get_service_types(ds: IMS): for d in ds.get_filtered_entities( 'ComboBoxData', -- GitLab