From 17621e023131eee1d0afaf8bda4a7ec681f1741b Mon Sep 17 00:00:00 2001 From: Bin Yang Date: Tue, 25 Dec 2018 10:42:52 +0000 Subject: Refactor the AAI cache for multicloud plugin Fix the cache issue of cloud region which result in failure of cloud region registration Change-Id: Id13a40124efb92bd818686e069c9335ecd0d07c1 Issue-ID: MULTICLOUD-431 Signed-off-by: Bin Yang --- share/common/msapi/extsys.py | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'share/common/msapi/extsys.py') diff --git a/share/common/msapi/extsys.py b/share/common/msapi/extsys.py index 9b65072e..88118aa8 100644 --- a/share/common/msapi/extsys.py +++ b/share/common/msapi/extsys.py @@ -12,7 +12,6 @@ import json import logging import re -from django.core.cache import cache from common.exceptions import VimDriverNewtonException from common.utils import restcall @@ -22,13 +21,6 @@ logger = logging.getLogger(__name__) def get_vim_by_id(vim_id): - - # try to load from cache - cachedviminfostr = cache.get("VIMINFOCACHE_"+vim_id) - if cachedviminfostr: - viminfo = json.loads(cachedviminfostr) - return viminfo - cloud_owner,cloud_region_id = decode_vim_id(vim_id) if cloud_owner and cloud_region_id: @@ -81,8 +73,6 @@ def get_vim_by_id(vim_id): viminfo['openstack_region_id'] = tmp_viminfo.get("cloud-epa-caps") \ if tmp_viminfo.get("cloud-epa-caps") else cloud_region_id - # cache the viminfo for 24 hour - cache.set("VIMINFOCACHE_"+vim_id, json.dumps(viminfo), 3600*24) return viminfo return None -- cgit 1.2.3-korg